ReloadActions Method

Microsoft Word Visual Basic

ReloadActions Method

Forces a reload of all smart tag actions related to a specific smart tag.

expression.ReloadActions

expression    Required. An expression that returns a SmartTagActions collection.

Example

The following example reloads the smart tag actions for each smart tag in the active document.

    Sub ReloadSmartTagActions()
    Dim objAction As SmartTagAction
    Dim objSmartTag As SmartTag
    
    For Each objSmartTag In ActiveDocument.SmartTags
        objSmartTag.SmartTagActions.ReloadActions
    Next
End Sub