Options.DisplaySmartTagButtons Property (Word)

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

Syntax

expression .DisplaySmartTagButtons

expression 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