Removes the shape from the page, and copies it to the Clipboard
Syntax:
Sub Cut()
Remarks:
The Cut method copies a shape to the Clipboard before deleting the shape from the document.
Examples:
The following VBA example cuts the active shape from the document.
Sub Test()
ActiveShape.Cut 
End Sub