Click or drag to resize

IErrorDescription Property

Gets the description of the syntax or execution error.

Namespace: WinWrap.Basic.Server
Assembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntax
string Description { get; }

Property Value

String
The description of the syntax or execution error.
Remarks
This string description is appropriate for displaying to the user in a message area.

This property works in conjunction with the other error properties to allow your application access to the exact source and cause of a WinWrap Basic syntax or execution error.

Example
Display the error description during the ErrorAlert event:
private void basicIdeCtl1_ErrorAlert(object sender, System.EventArgs e)
{
    MessageBox.Show("Error.Description = " + basicIdeCtl1.Error.Description);
}
See Also