IsColumnEvaluated(Column: Integer): Boolean;
Column: Column index.
The IsColumnEvaluated property returns True if the column with the index passed by the Column parameter can be calculated (evaluated).
Sub Main;
Var
MB: IMetabase;
Expr: IEaxAnalyzer;
Grid: IEaxGrid;
s: String;
Begin
MB:=MetabaseClass.Active;
Expr:=MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;
Grid:=Expr.Grid;
If Grid.IsColumnEvaluated(Grid.TabSheet.ColumnsCount-1) Then
s:="Evaluated";
Else
s:="Don't Evaluated";
End If;
End Sub Main;
After executing the example the s variable contains Evaluated if the last table column is calculated. Express report identifier - EXPRESS_REPORT.
See also: