ObjectVerbs Interface

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."

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
<GuidAttribute("9149348A-5A91-11CF-8700-00AA0060263B")> _
Public Interface ObjectVerbs _
    Inherits Collection
'Usage
Dim instance As ObjectVerbs
[GuidAttribute("9149348A-5A91-11CF-8700-00AA0060263B")]
public interface ObjectVerbs : Collection

Examples

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

Reference

ObjectVerbs Members

Microsoft.Office.Interop.PowerPoint Namespace