Title: IPrxReportTitle;
The Title property returns the object that contains titles of regular report sheets.
Sub Main;
Var
MB: IMetabase;
Report: IPrxReport;
Title: IPrxReportTitle;
s: String;
Begin
MB := MetabaseClass.Active;
Report := MB.ItemById("Report").Bind As IPrxReport;
Title := Report.Title;
s := Title.Center.Text;
End Sub Main;
After executing the example the "s" variable contains text of the central part of the title of the sheet of the regular report with the Report identifier.
See also: