Click or drag to resize

IErrorNumber Property

Gets the error number for the syntax or execution error.

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

Property Value

Int32
The error number for the syntax or execution error.
Remarks

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

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