Click or drag to resize

BasicNoUIObjDebugPrint Event

Occurs when the instruction Debug.Print was executed.

Namespace: WinWrap.Basic.Server
Assembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntax
public event EventHandler<TextEventArgs> DebugPrint

Value

EventHandlerTextEventArgs

Implements

IBasicNoUIDebugPrint
Remarks
The event handler receives an argument of type TextEventArgs.
Property Description
Text This is the Debug.Print text.

The Text parameter contains the text to be printed.

Example
Show Debug.Print text in a message box:
private void basicIdeCtl1_DebugPrint(object sender, TextEventArgs e)
{
    MessageBox.Show(e.Text);
}
See Also