IScene3DView.BackgroundColor

Syntax

BackgroundColor: IGxColor;

Description

The BackgroundColor property determines a color of 3D scene background.

Example

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

Sub Chart3D;

Var

S : IScene3D;

Begin

S.SceneView.BackgroundColor := New GxColor.CreateARGB(255,0,0,255);

End Sub Chart3D;

Executing the example changes the background color of the scene to blue.

See also:

IScene3DView