OLEFormat.ObjectVerbs property (PowerPoint)
Returns a ObjectVerbs collection that contains all the OLE verbs for the specified OLE object. Read-only.
Syntax
expression.ObjectVerbs
expression A variable that represents an OLEFormat object.
Return value
ObjectVerbs
Example
This 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 be a shape that represents an OLE object.
With ActivePresentation.Slides(2).Shapes(1).OLEFormat
For Each v In .ObjectVerbs
MsgBox v
Next
End With
This example specifies that the OLE object represented by shape one on slide two in the active presentation will open when it is clicked during a slide show if "Open" is one of the OLE verbs for that object. For this example to work, shape one must be a shape that represents an OLE object.
With ActivePresentation.Slides(2).Shapes(1)
For Each sVerb In .OLEFormat.ObjectVerbs
If sVerb = "Open" Then
With .ActionSettings(ppMouseClick)
.Action = ppActionOLEVerb
.ActionVerb = sVerb
End With
Exit For
End If
Next
End With
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.