Click or drag to resize

BasicNoUIObjBegin Event

Occurs when execution has started.

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

Value

EventHandlerEventArgs

Implements

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

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

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