Printable: Boolean;
The Printable property determines whether regular report header/title is printed.
Available values:
True. Default value. Header/title is printed.
False. Header/title is not printed.
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: