|
|
|
|
OnItemExpanded Method, SftTree Class |
Raises the ItemExpanded event.
Syntax SftTree Class (Softelvdm.SftTreeNET)
VB |
Protected Overridable Sub OnItemExpanded( ByVal e As ItemExpandedEventArgs ) |
C# |
protected virtual void OnItemExpanded( ItemExpandedEventArgs e ); |
C++ |
protected: virtual void OnItemExpanded( ItemExpandedEventArgs^ e ); |
e
The event data.
Comments
The OnItemExpanded method raises the ItemExpanded event.
Raising an event invokes the event handler through a delegate.
The OnItemExpanded 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 OnItemExpanded in a derived class, make sure to call the base class's OnItemExpanded method so that registered delegates receive the event.