DisplaySmartTagButtons Property

Microsoft Word Visual Basic

expression.DisplaySmartTagButtons

expression    Required. An expression that returns an Options object.

Remarks

The smart tag button provides a drop-down menu from which a user can access smart tag options and actions.

Example

This example hides the button that appears when the mouse pointer is positioned over a smart tag.

Sub DontShowSmartTagButton()
    Options.DisplaySmartTagButtons = False
End Sub