PointName(Index: Integer): String;
Index: Point index
The PointName property specifies the name of a point.
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;
Hull := Hulls.Item(0);
Hull.DataSource.PointName(0) := "Node";
s.Refresh;
End Sub Chart3D;
After executing the example point name (sphere name) is changed to the specified one.
See also: