Show contents 

Express > Express Assembly Interfaces > IEaxGrid > IEaxGrid.IsRowEvaluated

IEaxGrid.IsRowEvaluated

Syntax

IsRowEvaluated(Row: Integer): Boolean;

Parameters

Row. Row number.

Description

The IsRowEvaluated property returns True if the row with the index passed in the Row 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.IsRowEvaluated(Grid.TabSheet.RowsCount-1Then
        s := "Evaluated";
    Else
        s := "Don't Evaluated";
    End If;
End Sub UserProc;

After executing the example the variable "s" contains "Evaluated" if the last table row is calculatable. Express report identifier - EXPRESS_REPORT.

See also:

IEaxGrid