IScene3DCoordinatePlane.Plane

Syntax

Plane: IScene3DPlane;

Description

The Plane property determines parameters of the coordinate plane. Use the IScene3DPlane interface to work with available parameters.

Example

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

Sub Chart3D;

Var

S : IScene3D;

Begin

S.DisplayedObjects.CoordinatePlanes.BackPlane.Plane.Color := New GxColor.CreateRGB(255,0,0);

End Sub Chart3D;

Executing the example changes the color of the scene back wall to red.

See also:

IScene3DCoordinatePlane