IScene3DConvexHull.TextStyle

Syntax

TextStyle: IScene3DTextStyle;

Description

The TextStyle property enables the user to determine parameters for names of 3D surface points. Use the IScene3DTextStyle object to work with available parameters.

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);

Hull.TextStyle.Color := New GxColor.CreateARGB(255,255,0,0);

End Sub Chart3D;

After executing the example names of 3D surface nodes are displayed in red.

See also:

IScene3DConvexHull