IScene3DCoordinates.MaxZ

Syntax

MaxZ: Double;

Description

The MaxZ property returns the maximum value of the Z 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.MaxZ;
End Sub Chart3D;

After executing the example the "t" variable contains the maximum value of the Z axis.

See also:

IScene3DCoordinates