PointsCount(Index: Integer): Integer;
Index - index of the selected scene series.
The PointsCount property returns the number of selected points.
Sub User(Args : IScene3DSeriesClickArgs);
Var
str : string;
i, j : integer;
Begin
str := "";
WinApplication.InformationBox("SeriesCount = " + Args.SeriesCount.ToString);
For i := 0 To Args.SeriesCount - 1 Do
str := "Serie: " + Args.SerieName(i) + " ";
For j := 0 To Args.PointsCount(i) - 1 Do
str := str + "Point " + Args.PointName(i, j) + ", ";
End For;
str := str + #13 + #10;
End For;
WinApplication.InformationBox(str);
End Sub User;
This unit is assigned to handle the OnSeriesDoubleClick event (double-click on a scene series in the regular report). When the event occurs, the system returns messages containing information on the number of selected series, names of selected series and points.
See also: