TreeView.OnAfterSelect(TreeViewEventArgs) Method

Definition

Raises the AfterSelect event.

protected:
 virtual void OnAfterSelect(System::Windows::Forms::TreeViewEventArgs ^ e);
protected virtual void OnAfterSelect (System.Windows.Forms.TreeViewEventArgs e);
abstract member OnAfterSelect : System.Windows.Forms.TreeViewEventArgs -> unit
override this.OnAfterSelect : System.Windows.Forms.TreeViewEventArgs -> unit
Protected Overridable Sub OnAfterSelect (e As TreeViewEventArgs)

Parameters

e
TreeViewEventArgs

A TreeViewEventArgs that contains the event data.

Remarks

Raising an event invokes the event handler through a delegate. For more information, see Handling and Raising Events.

The OnAfterSelect 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.

Notes to Inheritors

When overriding OnAfterSelect(TreeViewEventArgs) in a derived class, be sure to call the base class's OnAfterSelect(TreeViewEventArgs) method so that registered delegates receive the event.

Applies to

See also