Dialog.Show(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Displays and carries out actions initiated in the specified built-in Microsoft Word dialog box. Returns an Integer that indicates which button was clicked to close the dialog box.
public int Show (ref object TimeOut);
abstract member Show : obj -> int
Public Function Show (Optional ByRef TimeOut As Object) As Integer
Parameters
- TimeOut
- Object
Optional Object. The amount of time that Word will wait before closing the dialog box automatically. One unit is approximately 0.001 second. Concurrent system activity may increase the effective time value. If this argument is omitted, the dialog box is closed when the user dismisses it.
Returns
Remarks
-2 | The Close button. | |
-1 | The OK button. | |
0 (zero) | The Cancel button. | |
> 0 (zero) | A command button: 1 is the first button, 2 is the second button, and so on. |
Use the Show method shows the specified built-in Word dialog box, then (if the user clicks the OK button) carry out the actions specified by the user in the dialog box. The Display(Object) method, on the other hand, displays the specified built-in Word dialog box, but takes no action after the user closes the dialog box. Therefore, you should choose the method to use as follows: