IScene3DSurface.SurfaceGrid

Syntax

SurfaceGrid: IScene3DGrid;

Description

The SurfaceGrid property determines parameters of surface gridlines. Use the IScene3DGrid 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;

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 surface gridlines is changed to red.

See also:

IScene3DSurface