IWxView.UngroupSelectedShapes

Syntax

UngroupSelectedShapes;

Description

The UngroupSelectedShapes method ungroups the selected shapes.

Example

Executing the example requires an existing ws object of the IWxWorkspace type.

Sub UserProc;

Var

ws: IWxWorkspace;

view : IWxView;

Begin

view := ws.Views.Item(0);

view.UngroupSelectedShapes;

End Sub UserProc;

After executing the example the selected groups are ungrouped.

See also:

IWxView