BottomPlane: IScene3DPlane;
The BottomPlane property defines parameters for the bottom wall of the scene (the XOY plane).
This example requires an existing S object of the IScene3D type. Use the IScene3DPlane interface to work with available parameters.
Sub Chart3D;
Var
S : IScene3D;
Plane : IScene3DCoordinatePlanes;
Begin
Plane := s.DisplayedObjects.CoordinatePlanes;
Plane.BottomPlane.Grid.Color := New GxColor.CreateARGB(255,0,0,255);
End Sub Chart3D;
Executing this example changes the color of the bottom wall of the scene to blue.
See also: