Ungroup;
The Ungroup method ungroups an object group.
Executing the example requires an existing ws object of the IWxWorkspace type.
Sub UserProc;
Var
ws: IWxWorkspace;
Group : IWxGroup;
Begin
ws.BeginUpdate;
Group := ws.Shapes.FindById("Shape 3") As IWxGroup;
Group.Ungroup;
ws.EndUpdate;
End Sub UserProc;
After executing the example the group is ungrouped.
See also: