IScene3DTextStyle.Background

Syntax

Background: IScene3DTextBackground;

Description

The Background property sets parameters of background text object.

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 example the text along the OX axis is outlined with red.

See also:

IScene3DTextStyle