Report > Report Assembly Interfaces > IPrxSheetHeaderBase > IPrxSheetHeaderBase.Left
Left: IPrxSheetHeaderPart;
The Left property determines the left part of the title or header.
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;
Left: IPrxSheetHeaderPart;
Begin
MB := MetabaseClass.Active;
MObj := MB.ItemById("REPORT").Edit;
Report := MObj As IPrxReport;
Header := Report.Title As IPrxSheetHeaderBase;
Left := Header.Left;
Left.Text := "Macroeconomic indicators";
MObj.Save;
End Sub UserProc;
After executing the example a title aligned to the left edge of the sheet is specified for the regular report.
See also: