Options.DisplaySmartTagButtons Property

Word Developer Reference

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.

Visual Basic for Applications
  Sub DontShowSmartTagButton()
    Options.DisplaySmartTagButtons = False
End Sub

See Also