SmartTagRecognizers Property

Microsoft Excel Visual Basic

collection for an application.

expression.SmartTagRecognizers

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

Example

In this example, Microsoft Excel displays the first smart tag recognizer item available for the application, or displays a message that none exist.

Sub CheckforSmartTagRecognizers()

    ' Handle run-time error if no smart tag recognizers exist.
    On Error Goto No_SmartTag_Recognizers_In_List

    ' Notify the user of the first smart tag recognizer item.
    MsgBox "The first smart tag recognizer is: " & _
        Application.SmartTagRecognizers.Item(1)
    Exit Sub

No_SmartTag_Recognizers_In_List:
    MsgBox "No smart tag recognizers exist in list."

End Sub