TreeNodeMouseClickEventHandler
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Represents the method that will handle the NodeMouseClick and NodeMouseDoubleClick events of a TreeView.
- C#
- VB.NET
public delegate void TreeNodeMouseClickEventHandler(Object sender, TreeNodeMouseClickEventArgs e)
Public Delegate Sub TreeNodeMouseClickEventHandler(ByVal sender As [Object], ByVal e As TreeNodeMouseClickEventArgs)
Parameters
| Name | Type | Description |
|---|---|---|
| sender | Object | The source of the event. |
| e | TreeNodeMouseClickEventArgs | A TreeNodeMouseClickEventArgs that contains the event data. |
Fired By
| Name | Description |
|---|---|
| TreeNode.NodeMouseClick | Fired when the user clicks a TreeNode with the mouse. |
| TreeNode.NodeMouseDoubleClick | Fired when the user double-clicks a TreeNode with the mouse. |
| TreeView.NodeMouseClick | Fired when the user clicks a TreeNode with the mouse. |
| TreeView.NodeMouseDoubleClick | Fired when the user double-clicks a TreeNode with the mouse. |