IScene3DSeriesClickArgs.PointName

Syntax

PointName(SerieIndex: Integer; PointIndex: Integer): String;

Parameters

SerieIndex - index of the selected scene series.

PointIndex - index of the selected series point.

Description

The PointName property returns the name of the selected series point.

Example

Sub UserProc(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 UserProc;

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:

IScene3DSeriesClickArgs