DataDisplayModeInteractive: Boolean;
The DataDisplayModeInteractive property determines whether data of the express report table are to be automatically refreshed.
Sub Main;
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 Main;
After executing the example, auto refresh of the table data is disabled. Express report identifier - EXPRESS_REPORT.
See also: