Show contents 

Express > Express Assembly Classes > LanerBox > LanerBox.OnAddSerie

LanerBox.OnAddSerie

Syntax

OnAddSerie(Sender: Object; Args: ILanerBoxSerieEventArgs);

Parameters

Sender. The component that generated the event.

Args. Event parameters.

Description

The OnAddSerie event occurs when a new series is added to a workbook.

Comments

Parameters of this event cannot be changed.

Example

Executing the example requires a form, the LanerBox component named LanerBox1 on the form and the UiErAnalyzer component that is a data source for LanerBox. A workbook of time series database should be loaded to UiErAnalyzer. The form also contains the Memo component with the Memo1 identifier.

This procedure must be assigned as a handler of the OnAddSerie event for LanerBox.

Sub LanerBox1OnAddSerie(Sender: Object; Args: ILanerBoxSerieEventArgs);
Begin
    Memo1.Lines.Add("Index of the added series: " + Args.SerieIndex.ToString);
    If Args.Factor <> Null Then
        Memo1.Lines.Add("Indicator key: " + Args.Factor.Factor.ToString);
    End If;
    If Args.Serie <> Null Then
        Memo1.Lines.Add("Series name: " + Args.Serie.Name);
    End If;
End Sub LanerBox1OnAddSerie;

After a series is added to the workbook, information on this series is displayed in the Memo1 component.

See also:

LanerBox