Parent: ILanerGroupSerie;
The Parent property returns a group that contains the series. If the series is not present in the group, the property returns Null.
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. Workbook of the time series database must be loaded to UiErAnalyzer1.
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 + Series.Name + is present in the + Group.Name + );
Else Debug.WriteLine(Series + Series.Name + is not present in the group);
End If;
End Sub Button1OnClick;
After executing the example the information about the workbook first series belonging to a group of series is displayed in console window.
See also: