ILanerTable.IsEvaluatedCell

Syntax

IsEvaluatedCell(Row: Integer; Column: Integer): Boolean;

Parameters

Row. Row index.

Column. Column index.

Description

The IsEvaluatedCell property returns that the cell is calculated. True - the cell is calculated, False - the cell is simple.

Example

Executing the example requires a form with the Button1 button, the TabSheetBox component and the UiErAnalyzer component named UiErAnalyzer1 that is a data source for TabSheetBox. Working area of the time series database must be loaded to UiErAnalyzer1.

Click the button to start executing this example.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);

Var

ErAn: IEaxAnalyzer;

Laner: ILaner;

Table: ILanerTable;

i, j: Integer;

Begin

ErAn := UiErAnalyzer1.ErAnalyzer;

Laner := ErAn.Laner;

Table := Laner.Execute;

For i := 0 To Table.RowCount - 1 Do

For j := 0 To Table.ColumnCount - 1 Do

If Table.IsEvaluatedCell(i, j) Then

Debug.WriteLine("The cell ("+i.ToString+", "+j.ToString+") is calculated");

End If;

End For;

End For;

End Sub Button1OnClick;

After executing the example the calculated cells are displayed in console window.

See also:

ILanerTable