IHeaderBase.Printable

Syntax

Printable: Boolean;

Description

The Printable property determines whether regular report header/title is printed.

Comments

Available values:

Example

The property use is given in the example for .

Executing the example requires that the repository contains

Add links to the , system assemblies.

After executing the example

The example in question requires the Report object of the IPrxReport type.

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Report: IPrxReport;
    Header: IPrxSheetHeaderBase;
Begin
    MB := MetabaseClass.Active;
    MObj := MB.ItemById("REPORT").Edit;
    Report := MObj As IPrxReport;
    Header := Report.Title As IPrxSheetHeaderBase;
    Header.Printable := False;
    MObj.Save;
End Sub UserProc;

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

See also:

IHeaderBase