IScene3DTextStyle.Color

Syntax

Color: IGxColor;

Description

The Color property determines a label color.

Example

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

Sub Chart3D;

Var

s : IScene3D;

StF: IScene3DTextStyle;

Begin

StF := s.DisplayedObjects.CoordinatePlanes.TextStyles.TextStyleOX;

StF.Color := New GxColor.CreateRGB(255,0,0);

End Sub Chart3D;

After executing the example font color of the label along the OX axis is changed to red.

See also:

IScene3DTextStyle