IScene3DSurface.SurfaceGrid

Syntax

SurfaceGrid: IScene3DGrid;

Description

The SurfaceGrid property defines parameters for surface grid lines. To work with available parameters, use the IScene3DGrid interface.

Example

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

Sub Chart3D;

Var

s : IScene3D;

sur : IScene3DSurface;

Begin

sur := s.DisplayedObjects.Surfaces.Item(0);

sur.SurfaceGrid.Color := New GxColor.CreateRGB(255,0,0);

End Sub Chart3D;

After executing the example color of layout grid lines is changed to red.

See also:

IScene3DSurface