IScene3DCoordinates.MaxX

Syntax

MaxX: Double;

Description

The MaxX property returns the maximum value of the X 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.MaxX;

End Sub Chart3D;

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

See also:

IScene3DCoordinates