Skip to content

Latest commit

 

History

History
49 lines (28 loc) · 907 Bytes

PowerPoint.Shape.PickUp.md

File metadata and controls

49 lines (28 loc) · 907 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Shape.PickUp method (PowerPoint)
vbapp10.chm547008
vbapp10.chm547008
PowerPoint.Shape.PickUp
35730a7e-3878-dfae-2aba-3395d41e5f3e
06/08/2017
medium

Shape.PickUp method (PowerPoint)

Copies the formatting of the specified shape. Use the Apply method to apply the copied formatting to another shape.

Syntax

expression.PickUp

expression A variable that represents a Shape object.

Example

This example copies the formatting of shape one on myDocument and then applies the copied formatting to shape two.

Set myDocument = ActivePresentation.Slides(1)

With myDocument

    .Shapes(1).PickUp

    .Shapes(2).Apply

End With

See also

Shape Object

[!includeSupport and feedback]