Click or drag to resize

BasicNoUIObjDebugClear Event

Occurs when the instruction Debug.Clear is executed.

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

Value

EventHandlerEventArgs

Implements

IBasicNoUIDebugClear
Remarks
The event handler receives an argument of type EventArgs.
Example
Clear the Debug.Print window:
private void basicIdeCtl1_DebugClear(object sender, System.EventArgs e)
{
    txtDebugOutput.Text = "";
}
See Also