Skip to main content
Version: 4.1

TreeNodeMouseClickEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

Provides data for the NodeMouseClick and NodeMouseDoubleClick events.

public class TreeNodeMouseClickEventArgs : MouseEventArgs

Constructors​

Instance member TreeNodeMouseClickEventArgs(node, button, clicks, x, y)​

Initializes a new instance of the TreeNodeMouseClickEventArgs class.

NameTypeDescription
nodeTreeNodeThe node that was clicked.
buttonMouseButtonsOne of the MouseButtons members.
clicksInt32The number of clicks that occurred.
xInt32The x-coordinate where the click occurred.
yInt32The y-coordinate where the click occurred.

Instance member TreeNodeMouseClickEventArgs(node, button, clicks, x, y, role)​

Initializes a new instance of the TreeNodeMouseClickEventArgs class.

NameTypeDescription
nodeTreeNodeThe node that was clicked.
buttonMouseButtonsOne of the MouseButtons members.
clicksInt32The number of clicks that occurred.
xInt32The x-coordinate where the click occurred.
yInt32The y-coordinate where the click occurred.
roleStringThe internal role assigned to the element that generated the pointer event.

Properties​

Instance member Node​

TreeNode: Returns the tree node that has been clicked.

Used By​

NameDescription
TreeNodeMouseClickEventHandlerRepresents the method that will handle the NodeMouseClick and NodeMouseDoubleClick events of a TreeView.