ILanerSeries.MoveTo

Syntax

MoveTo(FromIndex: Integer; ToIndex: Integer);

Parameters

FromIndex. The position index of the series, that needs to be moved.

ToIndex. Index of the position, into which the series needs to be moved.

Description

The MoveTo method moves the series in the collection by their indexes.

Comments

The values of FromIndex, ToIndex must be non-negative and less than the value of ILanerSerieList.Count.

Example

Executing the example requires a form with the Button1 button, the LanerBox component and the UiErAnalyzer component named UiErAnalyzer1, which is a data source for LanerBox. Workbook 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
    Analyzer: IEaxAnalyzer;
    Laner: Ilaner;
    Series: ILanerSeries;
Begin
    Analyzer := UiErAnalyzer1.ErAnalyzer;
    Laner := Analyzer.Laner;
    Series := Laner.Series;
    Series.MoveTo(Series.Count - 10);
End Sub Button1OnClick;

After executing the example the last series of the workbook is moved to its beginning.

See also:

ILanerSeries