BackPlane: IScene3DPlane;
The BackPlane property determines parameters of the scene back wall (the XOZ plane). Use the IScene3DPlane interface to work with available parameters.
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.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: