Skip to main content
Version: 3.5

TreeNodeMouseClickEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for the NodeMouseClick and NodeMouseDoubleClick events.

public class TreeNodeMouseClickEventArgs : MouseEventArgs

Constructors

Instance memberTreeNodeMouseClickEventArgs(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 memberTreeNodeMouseClickEventArgs(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 memberNode

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.