Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 1.01 KB

PowerPoint.ObjectVerbs.md

File metadata and controls

42 lines (25 loc) · 1.01 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
ObjectVerbs object (PowerPoint)
vbapp10.chm564000
vbapp10.chm564000
PowerPoint.ObjectVerbs
71dfd143-cec6-8b6f-7d0f-5229bc442d92
06/08/2017
medium

ObjectVerbs object (PowerPoint)

Represents the collection of OLE verbs for the specified OLE object. OLE verbs are the operations supported by an OLE object. Commonly used OLE verbs are "play" and "edit."

Example

Use the ObjectVerbs property to return an ObjectVerbs object. The following example displays all the available verbs for the OLE object contained in shape one on slide two in the active presentation. For this example to work, shape one must contain an OLE object.

With ActivePresentation.Slides(2).Shapes(1).OLEFormat

    For Each v In .ObjectVerbs

        MsgBox v

    Next

End With

See also

PowerPoint Object Model Reference

[!includeSupport and feedback]