IScene3DConvexHull.Name

Syntax

Name: String;

Description

The Name property determines a 3D surface name.

Example

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

Sub Chart3D;

Var

S : IScene3D;

Hulls : IScene3DConvexHulls;

Hull : IScene3DConvexHull;

Begin

Hulls := S.DisplayedObjects.ConvexHulls;

Hulls.Count := 1;

Hull := Hulls.Item(0);

Hulls.Item(0).Name := "Surface 1";

End Sub Chart3D;

After executing the example the surface with the 0 index is named Surface 1.

See also:

IScene3DConvexHull