TreeNodeMouseClickEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Provides data for the NodeMouseClick and NodeMouseDoubleClick events.
- C#
- VB.NET
public class TreeNodeMouseClickEventArgs : MouseEventArgs
Public Class TreeNodeMouseClickEventArgs
Inherits MouseEventArgs
Constructors
TreeNodeMouseClickEventArgs(node, button, clicks, x, y)
Initializes a new instance of the TreeNodeMouseClickEventArgs class.
| Name | Type | Description |
|---|---|---|
| node | TreeNode | The node that was clicked. |
| button | MouseButtons | One of the MouseButtons members. |
| clicks | Int32 | The number of clicks that occurred. |
| x | Int32 | The x-coordinate where the click occurred. |
| y | Int32 | The y-coordinate where the click occurred. |
TreeNodeMouseClickEventArgs(node, button, clicks, x, y, role)
Initializes a new instance of the TreeNodeMouseClickEventArgs class.
| Name | Type | Description |
|---|---|---|
| node | TreeNode | The node that was clicked. |
| button | MouseButtons | One of the MouseButtons members. |
| clicks | Int32 | The number of clicks that occurred. |
| x | Int32 | The x-coordinate where the click occurred. |
| y | Int32 | The y-coordinate where the click occurred. |
| role | String | The internal role assigned to the element that generated the pointer event. |
Properties
Node
TreeNode: Returns the tree node that has been clicked.
Used By
| Name | Description |
|---|---|
| TreeNodeMouseClickEventHandler | Represents the method that will handle the NodeMouseClick and NodeMouseDoubleClick events of a TreeView. |