Footer: IPrxSheetHeader;
The Footer property returns an object that contains footer of pages of the regular report sheet.
Outdated, use IPrxSheetHeaders.Footer.
Sub Main;
Var
MB: IMetabase;
Report: IPrxReport;
Sheet: IPrxSheet;
Header: IPrxSheetHeader;
Begin
MB := MetabaseClass.Active;
Report := MB.ItemById("Report").Bind As IPrxReport;
Sheet := Report.ActiveSheet;
Header := Sheet.Footer;
End Sub Main;
After executing the example the Header variable contains the footer of pages of the active sheet of the regular report. The identifier of the regular report - Report.
See also: