Occurs when a macro/module is executing.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntaxevent EventHandler<EventArgs> DoEvents
Event DoEvents As EventHandler(Of EventArgs)
event EventHandler<EventArgs^>^ DoEvents {
void add (EventHandler<EventArgs^>^ value);
void remove (EventHandler<EventArgs^>^ value);
}
Value
EventHandlerEventArgs
Remarks
The event handler receives an argument of type
EventArgs.
By merely calling DoEvents, you can allow
your own application to process messages and cooperatively multitask
while a macro/module is running.
See Also