IScene3DProjection.Type

Syntax

Type: Scene3DProjectionType;

Description

The Type property determines a type of a 3D scene projection.

Example

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 the example will set orthogonal scene projection.

See also:

IScene3DProjection