MsgBoxResult Enumeration
Indicates which button was pressed on a message box, returned by the MsgBox function.
Assembly: Microsoft.VisualBasic (in Microsoft.VisualBasic.dll)
| Member name | Description | |
|---|---|---|
| Abort | Abort button was pressed. This member is equivalent to the Visual Basic constant vbAbort. | |
| Cancel | Cancel button was pressed. This member is equivalent to the Visual Basic constant vbCancel. | |
| Ignore | Ignore button was pressed. This member is equivalent to the Visual Basic constant vbIgnore. | |
| No | No button was pressed. This member is equivalent to the Visual Basic constant vbNo. | |
| Ok | OK button was pressed. This member is equivalent to the Visual Basic constant vbOK. | |
| Retry | Retry button was pressed. This member is equivalent to the Visual Basic constant vbRetry. | |
| Yes | Yes button was pressed. This member is equivalent to the Visual Basic constant vbYes. |
When you call the MsgBox function, you can use the MsgBoxResult enumeration in your code in place of the actual values.
The MsgBox function returns a MsgBoxResult enumeration value.
Available since 1.1