IWxView.CutSelectedShapes

Syntax

CutSelectedShapes;

Description

The CutSelectedShapes method cuts the selected objects to clipboard.

Example

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

Sub UserProc;

Var

ws: IWxWorkspace;

view : IWxView;

PointF : IGxPointF;

Begin

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

view.CutSelectedShapes;

PointF := New GxPointF.Create(10,5);

view.Paste(PointF);

End Sub UserProc;

After executing the example the selected objects are cut and pasted.

See also:

IWxView