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