SmartTagActions.ReloadActions Method

Word Developer Reference

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

Syntax

expression.ReloadActions

expression   Required. A variable that represents a SmartTagActions collection.

Example

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

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

See Also