Occurs when execution needs to pause or end.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntaxevent EventHandler<EventArgs> Pending
Event Pending As EventHandler(Of EventArgs)
event EventHandler<EventArgs^>^ Pending {
void add (EventHandler<EventArgs^>^ value);
void remove (EventHandler<EventArgs^>^ value);
}
Value
EventHandlerEventArgs
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.
See Also