IScene3DTextBackground.Visible

Syntax

Visible: Boolean;

Description

The Visible property determines whether a background object of a text is displayed. If the property value is set to True a background object of the label is displayed. When the property value is False the object is not displayed.

The default value of this property is False.

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.Background.Type := 0 As Scene3DTextBackgroundType;

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

StF.Background.Visible := True;

End Sub Chart3D;

After executing the examples text of labels along the OX axis has red outline.

See also:

IScene3DTextBackground