Options.SaveNormalPrompt Property

Word Developer Reference

True if Microsoft Office Word prompts the user for confirmation to save changes to the Normal template before it closes. Read/write Boolean.

Syntax

expression.SaveNormalPrompt

expression   An expression that returns an Options object.

Remarks

False if Word automatically saves changes to the Normal template before it closes.

Example

This example sets Word to save the Normal template automatically before closing, and then it quits.

Visual Basic for Applications
  Options.SaveNormalPrompt = False
Application.Quit

This example returns the current status of the Prompt to save Normal template option on the Save tab in the Options dialog box (Tools menu).

Visual Basic for Applications
  temp = Options.SaveNormalPrompt

See Also