SceneView: IScene3DView;
The SceneView property determines scene view settings. Use the IScene3DView interface to work with available parameters.
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: