Show contents 

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

IEaxGrid.IsColumnEvaluated

Syntax

IsColumnEvaluated(Column: Integer): Boolean;

Parameters

Column. Column index.

Description

The IsColumnEvaluated property returns True if the column with the index passed in the Column parameter is calculable.

Example

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-1Then
        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:

IEaxGrid