Share via


Application.DisplayAutoCompleteTips Property

Word Developer Reference

True if Word displays tips that suggest text for completing words, dates, or phrases as you type. Read/write Boolean.

Syntax

expression.DisplayAutoCompleteTips

expression   A variable that represents an Application object.

Example

This example sets Word to display tips that suggest text for completing words, dates, or phrases as you type.

Visual Basic for Applications
  Application.DisplayAutoCompleteTips = True

This example returns the status of the Suggest the rest of the word or date with a tip as you type option on the AutoText tab in the AutoCorrect dialog box (Tools menu).

Visual Basic for Applications
  Dim blnTemp As Boolean

blnTemp = Application.DisplayAutoCompleteTips

See Also