Skip to content

Latest commit

 

History

History
54 lines (30 loc) · 1.21 KB

PowerPoint.ShapeRange.Cut.md

File metadata and controls

54 lines (30 loc) · 1.21 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ShapeRange.Cut method (PowerPoint)
vbapp10.chm548050
vbapp10.chm548050
PowerPoint.ShapeRange.Cut
0e86d67c-7d52-4f3a-4cdd-6363667600a1
08/02/2022
medium

ShapeRange.Cut method (PowerPoint)

Deletes the specified object and places it on the Clipboard.

Syntax

expression.Cut

expression A variable that represents a ShapeRange object.

Remarks

If any shape in the range is not fully downloaded, this method fails and an error occurs. For more information about the Partial Documents, see Work with Partial Documents.

Example

This example deletes shapes one and two from slide one in the active presentation, places copies of them on the Clipboard, and then pastes the copies onto slide two.

With ActivePresentation

    .Slides(1).Shapes.Range(Array(1, 2)).Cut

    .Slides(2).Shapes.Paste

End With

See also

ShapeRange Object

Work with Partial Documents

[!includeSupport and feedback]