Skip to main content
Version: 3.5

ListViewItemDragEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for the ItemDrag event of the ListView controls.

public class ListViewItemDragEventArgs : EventArgs

Constructors

Instance memberListViewItemDragEventArgs(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 memberListViewItemDragEventArgs(button, item)

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

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

Properties

Instance memberButton

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

Instance memberItem

ListViewItem: Returns the ListViewItem that is being dragged.

Used By

NameDescription
ListViewItemDragEventHandlerRepresents the method that will handle the ItemDrag event of a ListView control.