ILanerSerieList.Item

Syntax

Item(Index: Integer): ILanerSerie;

Parameters

Index is the series index in the collection.

Description

The Item property returns the series from the collection by its index.

Example

Executing the example requires a form with the Button1 button, the TabSheetBox component and the UiErAnalyzer component named UiErAnalyzer1 which is used as 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;

Serie: ILanerSerie;

i: integer;

Begin

ErAn := UiErAnalyzer1.ErAnalyzer;

Laner := ErAn.Laner;

For i := 0 To Laner.SerieList.Count - 1 Do

Serie := Laner.SerieList.Item(i);

Debug.WriteLine(Serie.Key);

End For;

End Sub Button1OnClick;

After executing this example the keys of series, that are contained in the working area, are displayed in console window.

See also:

ILanerSerieList