BottomPlane: IScene3DPlane;
The BottomPlane property determines parameters of the scene bottom wall (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 the example changes the color of the scene bottom wall to blue.
See also: