ObjectVerbs Property

Microsoft Publisher Visual Basic

collection that contains all the OLE verbs for the specified OLE object. Read-only.

expression.ObjectVerbs

expression    Required. An expression that returns one of the objects in the Applies To list.

Example

This example displays all the available verbs for the OLE object contained in shape one on page two in the active publication. For this example to work, shape one must be a shape that represents an OLE object.

Dim v As String

With ActiveDocument.Pages(2).Shapes(1).OLEFormat
    For Each v In .ObjectVerbs
        MsgBox v
    Next
End With