Report > Report Assembly Interfaces > IPrxSheetHeaderBase > IPrxSheetHeaderBase.Right
Right: IPrxSheetHeaderPart;
The Right property determines the right part of the title or header and footer.
The following example assumes that there is the Report object with the IPrxReport type.
Sub UserProc;
Var
MB: IMetabase;
MObj: IMetabaseObject;
Report: IPrxReport;
Header: IPrxSheetHeaderBase;
Right: IPrxSheetHeaderPart;
s: String;
Begin
MB := MetabaseClass.Active;
MObj := MB.ItemById("REPORT").Edit;
Report := MObj As IPrxReport;
Header := Report.Title As IPrxSheetHeaderBase;
Right := Header.Right;
s := Right.Text;
MObj.Save;
End Sub UserProc;
After executing the example the "s" variable will contain the text of the right part of titles of the regular report sheets.
See also: