Show contents 

Express > Express Assembly Interfaces > IEaxGrid > IEaxGrid.DataDisplayModeInteractive

IEaxGrid.DataDisplayModeInteractive

Syntax

DataDisplayModeInteractive: Boolean;

Description

The DataDisplayModeInteractive property determines whether data of the express report table are to be automatically refreshed.

Example

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.DataDisplayModeInteractive:=False;
    MObj.Save;
End Sub UserProc;

After executing the example, auto refresh of the table data is disabled. Express report identifier - EXPRESS_REPORT.

See also:

IEaxGrid