IScene3DTextBackground.Visible

Syntax

Visible: Boolean;

Description

The Visible property determines whether a background label object is displayed. If this property is set to True, background label object is displayed; if this property is set to False, the object is not displayed.

The property is set to False by default.

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 labels along the OX axis have a red outline.

See also:

IScene3DTextBackground