SceneViewProperty: IScene3DViewProperty;
The Scene3DViewProperty property defines settings for a scene view. Use the IScene3DViewProperty interface to work with available settings.
This example assumes that there is the object S of the IScene3D type.
Sub Chart3D;
Var
s : IScene3D;
Begin
s.SceneView.SceneViewProperty.Projection.Type := Scene3DProjectionType.Ortho;
End Sub Chart3D;
Executing this example will set orthogonal scene projection.
See also: