Occurs when execution has been paused.
Namespace: WinWrap.Basic.ServerAssembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntaxpublic event EventHandler<EventArgs> Pause_
Public Event Pause_ As EventHandler(Of EventArgs)
public:
virtual event EventHandler<EventArgs^>^ Pause_ {
void add (EventHandler<EventArgs^>^ value);
void remove (EventHandler<EventArgs^>^ value);
}
Value
EventHandlerEventArgsImplements
IBasicNoUIPause_
Remarks
The event handler receives an argument of type
EventArgs.
When this event is triggered, both the Pause and
Run properties will be True.
Example
Show a message when execution has paused:
private void basicIdeCtl1_Pause_(object sender, System.EventArgs e)
{
MessageBox.Show("Execution has paused.");
}
Private Sub BasicIdeCtl1_Pause_(ByVal sender As Object, ByVal e As System.EventArgs) Handles BasicIdeCtl.Pause_
MessageBox.Show("Execution has paused.")
End Sub
private: System::Void basicIdeCtl1_Pause_(System::Object ^ sender, System::EventArgs ^ e)
{
MessageBox::Show(L"Execution has paused.");
}
See Also