Cut Method

Applies To

ChartObject object, ChartObjects collection object, OLEObject object, OLEObjects collection object, Range object, Shape object.

Description

Cuts the object to the Clipboard or pastes it into a specified destination.

Syntax

expression.Cut(Destination)

expression Required. An expression that returns an object in the Applies To list.

Destination Optional Variant. Used only with Range objects. The range where the object should be pasted. If this argument is omitted, the object is cut to the Clipboard.

Remarks

The cut range must be made up of adjacent cells.

Only embedded charts can be cut.

See Also

Copy method, Paste method.

Example

This example cuts the range A1:G37 on Sheet1 and places it on the Clipboard.

Worksheets("Sheet1").Range("A1:G37").Cut