IScene3DSeriesClickArgs.SerieName

Syntax

SerieName(Index: Integer): String;

Parameters

Index - index of a selected scene series.

Description

The SerieName property returns the name of the selected scene series.

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