Click or drag to resize

BasicNoUIObjPause_ Event

Occurs when execution has been paused.

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

Value

EventHandlerEventArgs

Implements

IBasicNoUIPause_
Remarks
The event handler receives an argument of type EventArgs.

When this event is triggered, both the Pause and Run properties will be True.

Example
Show a message when execution has paused:
private void basicIdeCtl1_Pause_(object sender, System.EventArgs e)
{
    MessageBox.Show("Execution has paused.");
}
See Also