IPrxSheetHeaderBase.Right

Syntax

Right: IPrxSheetHeaderPart;

Description

The Right property determines the right part of the title or header and footer.

Example

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

Sub UserProc;

Var

Report: IPrxReport;

Header :IPrxSheetHeaderBase;

Right :IPrxSheetHeaderPart;

s: String;

Begin

Header := Report.Title As IPrxSheetHeaderBase;

Right := Header.Right;

s := Right.Text;

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:

IPrxSheetHeaderBase