Show contents 

Home > Foresight Analytics Platform > Web Application and Desktop Application > Application Development and Functionality Enhancement > Developing in Development Environment > Description of System Assemblies > Express > Express Assembly Interfaces > IExAnalyzerExporter > IExAnalyzerExporter.AutoHeight

IExAnalyzerExporter.AutoHeight

Syntax

AutoHeight: Boolean;

Description

The AutoHeight property determines whether row height is automatically adjusted when the report is exported to HTML (*.html).

Comments

If the property is set to True, the row height is automatically adjusted when the report is exported to HTML.

Example

Sub UserProc;
Var
    MB: IMetabase;
    Expr: IEaxAnalyzer;
    ExpExspr: IExAnalyzerExporter;
Begin
    MB := MetabaseClass.Active;
    Expr := MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;
    ExpExspr := New ExAnalyzerExporter.Create;
    ExpExspr.ExAnalyzer := Expr;
    ExpExspr.AutoHeight := True;
    ExpExspr.ExportToFile("c:\"+ Expr.Name + ".HTML""HTML");
End Sub UserProc;

After executing the example the express report is exported to HTML format. Row height is automatically adjusted during the export. Express report identifier - EXPRESS_REPORT.

See also:

IExAnalyzerExporter