Skip to main content
Version: 4.1

ItemDragEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

Provides data for the ItemDrag event of the TreeView controls.

public class ItemDragEventArgs : EventArgs

Constructors

Instance member ItemDragEventArgs(button)

Initializes a new instance of the ItemDragEventArgs class with a specified mouse button.

NameTypeDescription
buttonMouseButtonsA combination of MouseButtons values that indicates which mouse buttons were pressed.

Instance member ItemDragEventArgs(button, node)

Initializes a new instance of the ItemDragEventArgs class with a specified mouse button and the TreeNode that is being dragged.

NameTypeDescription
buttonMouseButtonsA combination of MouseButtons values that indicates which mouse buttons were pressed.
nodeTreeNodeThe TreeNode being dragged.

Properties

Instance member Button

MouseButtons: Returns a value that indicates which mouse buttons were pressed during the drag operation.

Instance member Item

TreeNode: Returns the TreeNode that is being dragged.

Used By

NameDescription
ItemDragEventHandlerRepresents the method that will handle the ItemDrag event of a TreeView control.