Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 935 Bytes

Word.Dialog.Update.md

File metadata and controls

44 lines (27 loc) · 935 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Dialog.Update method (Word)
vbawd10.chm163053870
vbawd10.chm163053870
Word.Dialog.Update
7adf7403-77eb-85da-8a5a-092d1c8c548f
06/08/2017
medium

Dialog.Update method (Word)

Updates the values shown in a built-in Microsoft Word dialog box.

Syntax

expression.Update

expression Required. A variable that represents a 'Dialog' object.

Example

This example returns a Dialog object that refers to the Font dialog box. The font applied to the Selection object is changed to Arial, the dialog values are updated, and the Font dialog box is displayed.

Set myDialog = Dialogs(wdDialogFormatFont) 
Selection.Font.Name = "Arial" 
myDialog.Update 
myDialog.Show

See also

Dialog Object

[!includeSupport and feedback]