IScene3DSeriesClickEventArgs.SeriesCount

Syntax

SeriesCount: Integer;

Description

The SeriesCount property returns the number of graphic objects included in the selection.

Example

Sub Chart3DBox1OnSeriesDoubleClick(Sender: Object; Args: IScene3DSeriesClickEventArgs);

Begin

text := "";

For i := 0 To Args.SeriesCount - 1 Do

For j := 0 To Args.PointsCount(i) - 1 Do

text := text + "SerieName = " + Args.SerieName(i) + " PointName = " + Args.PointName(i, j);

End For;

End For;

End Sub Chart3DBox1OnSeriesDoubleClick;

Double-clicking an object point displays names of selected objects and their points in the form caption.

See also:

IScene3DSeriesClickEventArgs