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