Causes the current script's Console.ReadLine() method to complete with the given response text and the given button click.
Console.WebReadLineComplete(Text, button)
The method syntax has these parts:
Part | Description |
---|---|
Text (String) | The response text |
button (Answers) | the button that was clicked on the web 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. |