Express > Express Assembly Interfaces > IEaxGrid > IEaxGrid.IsRowEvaluated
IsRowEvaluated(Row: Integer): Boolean;
Row. Row number.
The IsRowEvaluated property returns True if the row with the index passed in the Row 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.IsRowEvaluated(Grid.TabSheet.RowsCount-1) Then
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: