Click or drag to resize

BasicNoUIObjResume Event

Occurs when execution has been resumed.

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

Value

EventHandlerEventArgs

Implements

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

When this event is triggered, the Pause property will be False, while the Run property will be True.

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