Name: String;
The Name property determines name of a group.
This example assumes that there is the object S of the IScene3D type.
Sub Chart3D;
Var
s : IScene3D;
SpG : IScene3DNamedSphereGroup;
Begin
s.DisplayedObjects.NamedSphereGroups.Count := 1;
SpG := s.DisplayedObjects.NamedSphereGroups.Item(0);
SpG.SphereCount := 3;
Spg.Name := "Group of points";
End Sub Chart3D;
Executing this example assigns the specified name to the named point group with zero index.
See also: