The OutResult type defines the buttons that a
message box can handle. The
Out method displays a
message in a dialog box, waits for the user to click a button, and then
returns an integer indicating which button the user clicked.
| | Name | Value | Description | |
| |
exCloseTimer | -1
|
The dialog is closed after elapsing time. The AutoClose
property specifies the number of seconds to let the message box being
visible.
| |
| |
exClose | 0
|
The dialog has been closed.
| |
| |
exOK | 1
|
The OK button has been clicked.
| |
| |
exCancel | 2
|
The Cancel button has been clicked.
| |
| |
exAbort | 3
|
The Abort button has been clicked.
| |
| |
exRetry | 4
|
The Retry button has been clicked.
| |
| |
exIgnore | 5
|
The Ignore button has been clicked.
| |
| |
exYes | 6
|
The Yes button has been clicked.
| |
| |
exNo | 7
|
The No button has been clicked.
| |