Dialog.Execute method (Word)

Applies the current settings of a Microsoft Word dialog box.

Syntax

expression. Execute

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

Example

The following example enables the Keep with next check box on the Line and Page Breaks tab in the Paragraph dialog box.

With Dialogs(wdDialogFormatParagraph) 
 .KeepWithNext = 1 
 .Execute 
End With

See also

Dialog Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.