IScene3D.SceneView

Syntax

SceneView: IScene3DView;

Description

The SceneView property determines scene view settings. Use the IScene3DView interface to work with available parameters.

Example

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

Sub Chart3D;

Var

s : IScene3D;

Begin

s.BeginUpdate;

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

s.EndUpdate;

End Sub Chart3D;

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

See also:

IScene3D