Header: IPrxSheetHeader;
The Header property returns an object that contains header of pages of the regular report sheet.
Outdated, use IPrxSheetHeaders.Header.
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.Header;
End Sub Main;
After executing the example the Header variable contains the header of pages of the active sheet of the regular report. The identifier of the regular report - Report.
See also: