次の方法で共有


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

Concepts

Dialog Object Members

Dialog Object