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 > IEaxGrid > IEaxGrid.IsColumnEvaluated
IsColumnEvaluated(Column: Integer): Boolean;
Column. Column index.
The IsColumnEvaluated property returns True if the column with the index passed in the Column parameter is calculable.
Sub UserProc;
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 UserProc;
After executing the example the "s" variable contains Evaluated if the last table column is calculable. Express report identifier - EXPRESS_REPORT.
See also: