IWxView.DeleteSelectedShapes

Syntax

DeleteSelectedShapes;

Description

The DeleteSelectedShapes method deletes the selected objects.

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.DeleteSelectedShapes;

End Sub UserProc;

After executing the example the selected objects are deleted from a workspace.

See also:

IWxView