|
|
|
|
OnSwitching Method, SftTabs Class |
Raises the Switching event.
Syntax SftTabs Class (Softelvdm.SftTabsNET)
VB |
Protected Overridable Sub OnSwitching( ByVal e As SwitchingEventArgs ) |
C# |
protected virtual void OnSwitching( SwitchingEventArgs e ); |
C++ |
protected: virtual void OnSwitching( SwitchingEventArgs^ e ); |
e
A SwitchingEventArgs that contains the event data.
Comments
The OnSwitching method raises the Switching event.
Raising an event invokes the event handler through a delegate.
The OnSwitching method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
When overriding OnSwitching in a derived class, make sure to call the base class's OnSwitching method so that registered delegates receive the event.