ILanerSerie.Parent

Syntax

Parent: ILanerGroupSerie;

Description

The Parent property returns a group that contains the series.

Comments

If the series is not present in the group, the property returns Null.

Example

Executing the example requires a form with the following components: the Button component named Button1, the TabSheetBox component named TabSheetBox1, and the UiErAnalyzer component named UiErAnalyzer1. UiErAnalyzer1 is a data source for TabSheetBox1. A workbook of the time series database should be loaded to UiErAnalyzer1.

The example is a handler of the OnClick event for the Button1 component.

Add links to the Express, ExtCtrls, Forms, Laner, and Tab system assemblies.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    ErA: IEaxAnalyzer;
    Laner: ILaner;
    Series: ILanerSeries;
    Group: ILanerGroupSerie;
    Serie: ILanerSerie;
    i: Integer;
Begin
    ErA := UiErAnalyzer1.ErAnalyzer;
    Laner := ErA.Laner;
    Series := Laner.Series;
    Serie := Series.Item(i);
    Group := Serie.Parent;
    If Group <> Null Then
        Debug.WriteLine("Series '" + Serie.Name + "' is contained in the group '" + Group.Name + "'");
        Else
            Debug.WriteLine("Series '" + Serie.Name + "' is not contained in the group");
    End If
End Sub Button1OnClick;

After executing the example the console window displays information about the workbook first series belonging to a group of series.

See also:

ILanerSerie