Show contents 

Report > Report Assembly Interfaces > IPrxReportTitle > IPrxReportTitle.Height

IPrxReportTitle.Height

Syntax

Height: Double;

Description

The Height property determines the height of the regular report title.

Example

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Report: IPrxReport;
    Title: IPrxReportTitle;
    d: Double;
Begin
    MB := MetabaseClass.Active;
    MObj := MB.ItemById("REPORT").Edit;
    Report := MObj As IPrxReport;
    Title := Report.Title;
    Title.Height := 8.5;
    MObj.Save;
End Sub UserProc;

After executing the example height of the regular report title equals to 8.5. The identifier of the regular report - Report.

See also:

IPrxReportTitle