IPrxSheetHeaderBase.Printable

Syntax

Printable: Boolean;

Description

The Printable property determines indicator of printout of the title or header and footer of the regular report. If the property is set to True, the title or header and footer is to be printed.

The default property value is True.

Example

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

Sub UserProc;

Var

Report: IPrxReport;

Header :IPrxSheetHeaderBase;

Begin

Header := Report.Title As IPrxSheetHeaderBase;

Header.Printable := False;

End Sub UserProc;

After executing the example the Print Title option is disabled for this regular report.

See also:

IPrxSheetHeaderBase