DisplaySmartTagButtons Property

Microsoft Word Visual Basic

DisplaySmartTagButtons Property

       

True for Microsoft Word to display a button directly above a smart tag when a mouse pointer is positioned over it. Read/write Boolean.

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