IScene3DCoordinates.MinY

Syntax

MinY: Double;

Description

The MinY property returns the minimum value of the Y axis.

Example

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

Sub Chart3D;

Var

S : IScene3D;

t : double;

Begin

t := s.DisplayedObjects.SceneCoordinates.MinY;

End Sub Chart3D;

After executing the example the "t" variable contains the minimum value of the Y axis.

See also:

IScene3DCoordinates