Dialogs object (Word)
A collection of Dialog objects in Word. Each Dialog object represents a built-in Word dialog box.
Remarks
Use the Dialogs property to return the Dialogs collection. The following example displays the number of available built-in dialog boxes.
MsgBox Dialogs.Count
You cannot create a new built-in dialog box or add one to the Dialogs collection. Use Dialogs (Index), where Index is the WdWordDialog constant that identifies the dialog box, to return a single Dialog object. The following example displays the built-in Open dialog box.
dlgAnswer = Dialogs(wdDialogFileOpen).Show
For more information, see Displaying built-in Word dialog boxes.
See also
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.