IScene3DSerie.Type

Syntax

Type: Scene3DSerieType;

Description

The Type property returns the type of a scene series.

Example

This example assumes that there is the S object of the IScene3D type and the IntegerEdit component.

Sub User;

Var

S : IScene3D;

series: IScene3DSeries;

serie : IScene3DSerie;

Begin

series := S.Series;

serie := series.FindByKey(IntegerEdit1.Value);

IntegerEdit1.Value := serie.Type;

End Sub User;

After executing the example the editor displays the index of the found series type.

See also:

IScene3DSerie