IEaxGrid.FixHeadersOnPrint

Syntax

FixHeadersOnPrint: Boolean;

Description

The FixHeadersOnPrint property determines whether headers of express report table are fixed on printing this report.

Comments

Available Values:

Example

Executing the example requires an express report with the EXPRESS_REPORT identifier.

Add links to the Metabase and Express system assemblies.

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Expr: IEaxAnalyzer;
    Grid: IEaxGrid;
Begin
    MB := MetabaseClass.Active;
    MObj := MB.ItemById(
"EXPRESS_REPORT").Edit;
    Expr := MObj 
As IEaxAnalyzer;
    Grid := Expr.Grid;
    Grid.FixHeadersOnPrint := 
False;
    MObj.Save;
End Sub UserProc;

After executing the example the table headers are not fixed when the express report is printed. Express report identifier - EXPRESS_REPORT.

See also:

IEaxGrid