IScene3DDisplayedObjects.LevelPlanes

Syntax

LevelPlanes: IScene3DLevelPlanes;

Description

The LevelPlanes property determines parameters of a level plane.

Example

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

Sub Chart3D;
Var
    s : IScene3D;
Begin
    s.DisplayedObjects.LevelPlanes.Count := 1;
    s.DisplayedObjects.LevelPlanes.Item(0).Type := Scene3DPlaneOrientation.XOYl;
End Sub Chart3D;

After executing the example the scene displays a level's plane that is parallel to the XOY plane.

See also:

IScene3DDisplayedObjects