Report > Report Assembly Interfaces > IPrxSheet > IPrxSheet.PageSettings
PageSettings: IPrxPageSettings;
The PageSettings property returns the object that contains regular report sheet parameters.
Sub UserProc;
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 UserProc;
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: