IPrxSheet.PageSettings

Syntax

PageSettings: IPrxPageSettings;

Description

The PageSettings property returns the object that contains regular report sheet parameters.

Example

Sub Main;

Var

MB: IMetabase;

Report: IPrxReport;

Sheet: IPrxSheet;

PageSet: IPrxPageSettings;

Begin

MB:=MetabaseClass.Active;

Report:=MB.ItemById("Report").Bind As IPrxReport;

Sheet:=Report.ActiveSheet;

PageSet:=Sheet.PageSettings;

End Sub Main;

After executing the example the PageSet variable contains print options of the active sheet of the regular report. The identifier of the regular report - Report.

See also:

IPrxSheet