IScene3DCoordinatePlanes.SidePlane

Syntax

SidePlane: IScene3DPlane;

Description

The SidePlane property defines parameters for the scene side wall (the YOZ 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;

Plane : IScene3DCoordinatePlanes;

Begin

Plane := S.DisplayedObjects.CoordinatePlanes;

Plane.SidePlane.Grid.Color := New GxColor.CreateARGB(255,0,0,255);

End Sub Chart3D;

Executing this example changes the color of the scene side wall to blue.

See also:

IScene3DCoordinatePlanes