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 can be calculated (evaluated).

Example

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.IsRowEvaluated(Grid.TabSheet.RowsCount-1) Then

s:="Evaluated";

Else

s:="Don't Evaluated";

End If;

End Sub Main;

 

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

See also:

IEaxGrid