Click or drag to resize

BasicNoUIObjPending Event

Occurs when execution needs to pause or end.

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

Value

EventHandlerEventArgs

Implements

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

When this event is triggered, the Pause property will be True, and the Run property will be True. Language extensions that require a long time to complete should be terminated, so that the macro/module can pause or end.

Example
Show a message when execution is about to pause or end:
private void basicIdeCtl1_Pending(object sender, System.EventArgs e)
{
    MessageBox.Show("Execution is about to pause or end.");
}
See Also