Application.DisplayAutoCompleteTips Property (Word)

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.

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).

Dim blnTemp As Boolean 
 
blnTemp = Application.DisplayAutoCompleteTips

See Also

Concepts

Application Object Members

Application Object