ILanerTable.CellType

Syntax

CellType(Row: Integer; Column: Integer): LnCellType;

Parameters

Row. Row index.

Column. Column index.

Description

The CellType property returns the type of a specified cell.

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 the example.

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

Var

ErAnalyzer: IEaxAnalyzer;

Laner: ILaner;

Table: ILanerTable;

i: Integer;

Begin

ErAnalyzer := UiErAnalyzer1.ErAnalyzer;

Laner := ErAnalyzer.Laner;

Table := Laner.Execute;

i := Table.CellType(4, 0);

Select Case i

Case 0: WinApplication.InformationBox("Ordinary cell");

Case 1: WinApplication.InformationBox(The cell - data source for the resulting spliced series);

End Select;

End Sub Button1OnClick;

After executing the example the message about the first cell of a data table is displayed.

See also:

ILanerTable