Click or drag to resize

BasicNoUIObjEnd Event

Occurs when execution has completed.

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

Value

EventHandlerEventArgs

Implements

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

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

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