Page Orientation
Hi,
I'm trying to modify the Page Orientation at runtime from Delphi.
I'm using the following:
var
Page: TfrxReportPage;
begin
Page := TfrxReportPage(frxImpressaoSQL.Pages[0]);
Page.Orientation := poLandscape;
The error Message is "Undeclared identifier: poLandscape".
How can I fix this error?
Thank you
I'm trying to modify the Page Orientation at runtime from Delphi.
I'm using the following:
var
Page: TfrxReportPage;
begin
Page := TfrxReportPage(frxImpressaoSQL.Pages[0]);
Page.Orientation := poLandscape;
The error Message is "Undeclared identifier: poLandscape".
How can I fix this error?
Thank you
Comments