Skip to content

Latest commit

 

History

History
52 lines (32 loc) · 1.14 KB

Word.Options.PromptUpdateStyle.md

File metadata and controls

52 lines (32 loc) · 1.14 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Options.PromptUpdateStyle property (Word)
vbawd10.chm162988473
vbawd10.chm162988473
Word.Options.PromptUpdateStyle
0646e8e2-3462-14c7-7e73-d35ad9a20724
06/08/2017
medium

Options.PromptUpdateStyle property (Word)

True displays a message asking the user to verify whether they want to reformat a style or reapply the original style formatting when changing the formatting of styles. Read/write Boolean.

Syntax

expression. PromptUpdateStyle

expression A variable that represents a 'Options' object.

Remarks

False reapplies the style formatting to the selection without verifying whether the user wants to change the style.

Example

This example checks to see if a user receives a message when updating styles, and if not, enables it.

Sub UpdateStylePrompt() 
 With Application.Options 
 If .PromptUpdateStyle = False Then 
 .PromptUpdateStyle = True 
 End If 
 End With 
End Sub

See also

Options Object

[!includeSupport and feedback]