IScene3D.DisplayedObjects

Syntax

DisplayedObjects: IScene3DDisplayedObjects;

Description

The DisplayedObjects property determines parameters for 3D scene objects. Use the IScene3DDisplayedObjects interface to work with available parameters.

Example

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

Sub Chart3D;
Var
    S : IScene3D;
Begin
    S.BeginUpdate;
    S.DisplayedObjects.CoordinatePlanes.TextStyles.TextStyleOX.Color := New GxColor.CreateARGB(255,0,0,255);
    S.EndUpdate;
End Sub Chart3D;

Executing the example changes the color of texts along the OX axis to blue.

See also:

IScene3D