Interaction
Wisej.Web.VisualBasic.Interaction
Last updated
Wisej.Web.VisualBasic.Interaction
Last updated
Namespace: Wisej.Web.VisualBasic
Assembly: Wisej.Framework (3.5.0.0)
Replaces the visual methods in Microsoft.VisualBasic.Interaction.
In Visual Basic and C#, you can call this method as an instance method on any object of type Object. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Sounds a tone through the computer's speaker.
Parameter | Type | Description |
---|---|---|
Displays a prompt in a dialog box, waits for the user to input text or click a button, and then returns a string containing the contents of the text box.
Parameter | Type | Description |
---|---|---|
Returns: String. The contents of the text box.
Asynchronous displays a prompt in a dialog box, waits for the user to input text or click a button, and then returns a string containing the contents of the text box.
Returns: Task<String>. The contents of the text box.
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.
Returns: MsgBoxResult. One of MsgBoxResult.
Asynchronously 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.
Returns: Task<MsgBoxResult>. One of MsgBoxResult.
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|
Parameter | Type | Description |
---|---|---|