Causes the current script's Console.AskYesNo() method to complete with the given yes or no answer.
Console.WebAskYesNoComplete(Button)
The method syntax has these parts:
Part | Description |
---|---|
Button (Answers) | The yes or no button that was clicked on the form |
Return (Nothing) | Does not return a value. |
The (symbolic) values for Answers are:
Constant | Value | Description |
---|---|---|
consCancel | 13 | The console Cancel button was pressed. |
consNo | 11 | The console No button was pressed. |
consOK | 12 | The console OK button was pressed. |
consYes | 10 | The console Yes button was pressed. |