Share via


SaveNormalPrompt Property

SaveNormalPrompt Property
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

True if Microsoft Word prompts the user for confirmation to save changes to the Normal template before it quits. False if Word automatically saves changes to the Normal template before it quits. Read/write Boolean.

expression.SaveNormalPrompt

expression   Required. An expression that returns an Options object.

Example

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

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

  temp = Options.SaveNormalPrompt