Name: String;
The Name property determines a group name.
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 the example assigns the specified name to the named point group with the 0 index.
See also: