IScene3DView.SceneViewProperty

Syntax

SceneViewProperty: IScene3DViewProperty;

Description

The Scene3DViewProperty property determines scene view settings. Use the IScene3DViewProperty interface to work with available settings.

Example

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

Sub Chart3D;

Var

s : IScene3D;

Begin

s.SceneView.SceneViewProperty.Projection.Type := Scene3DProjectionType.Ortho;

End Sub Chart3D;

Executing the example will set orthogonal scene projection.

See also:

IScene3DView