IPrxSheetHeaderBase.Left

Syntax

Left: IPrxSheetHeaderPart;

Description

The Left property determines the left part of the title or header.

Example

The following example assumes that there is the Report object with the IPrxReport type.

Sub UserProc;

Var

Report: IPrxReport;

Header :IPrxSheetHeaderBase;

Left :IPrxSheetHeaderPart;

Begin

Header := Report.Title As IPrxSheetHeaderBase;

Left := Header.Left;

Left.Text := "Macroeconomic indicators";

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:

IPrxSheetHeaderBase