IScene3DViewPoint.Scale

Syntax

Scale: Double;

Description

The Scale property determines a scene view scale. Available values are taken from the range [0.5, 4.0]. The property is set to 1 by default.

Example

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

Sub Chart3D;

Var

s : IScene3D;

Begin

s.SceneView.SceneViewProperty.ViewPoint.Scale := 2;

End Sub Chart3D;

After executing the example scene scale is changed to the specified one.

See also:

IScene3DViewPoint