IScene3DCoordinateTextStyles.TextStyleAdditional

Syntax

TextStyleAdditional: IScene3DTextStyle;

Description

The TextStyleAdditional property determines a style of coordinate labels of the selected sphere (point).

Example

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

Sub Chart3D;
Var
    S : IScene3D;
    sphere: IScene3DSphere;
    Style : IScene3DCoordinateTextStyles;
Begin
    s.DisplayedObjects.Spheres.Count := 1;
    sphere := s.DisplayedObjects.Spheres.Item(0);
    sphere.R := 0.1;
    sphere.Color := New GxColor.CreateRGB(255,0,0);
    Style := s.DisplayedObjects.CoordinatePlanes.TextStyles;
    Style.TextStyleAdditional.Color := New GxColor.CreateARGB(255,0,0,255);
End Sub Chart3D;

Executing the example changes the color of coordinates of the selected point to blue.

See also:

IScene3DCoordinateTextStyles