Compartilhar via


Window.DisplayScreenTips Property

Word Developer Reference

True if comments, footnotes, endnotes, and hyperlinks are displayed as tips. Read/write Boolean.

Syntax

expression.DisplayScreenTips

expression   A variable that represents a Window object.

Remarks

Text marked as having comments is highlighted.

Example

This example enables Word to display comments, footnotes, and endnotes as tips. Also, text marked as having comments is highlighted.

Visual Basic for Applications
  Application.DisplayScreenTips = True

This example returns the current status of the ScreenTips checkbox in the Show area on the View tab in the Options dialog box.

Visual Basic for Applications
  temp = Application.DisplayScreenTips

See Also