|
|
|
|
OnControlRemoved Method, SftTabs Class |
Raises the ControlRemoved event.
Syntax SftTabs Class (Softelvdm.SftTabsNET)
VB |
Protected Overrides Sub OnControlRemoved( ByVal e As ControlEventArgs ) |
C# |
protected override void OnControlRemoved( ControlEventArgs e ); |
C++ |
protected: virtual void OnControlRemoved( ControlEventArgs^ e ); |
e
A ControlEventArgs that contains the event data.
Comments
The OnControlRemoved method raises the ControlRemoved event.
Called when a child control is removed from the control.
Raising an event invokes the event handler through a delegate.
The OnControlRemoved 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 OnControlRemoved in a derived class, make sure to call the base class's OnControlRemoved method so that registered delegates receive the event.