ListViewItemDragEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Provides data for the ItemDrag event of the ListView controls.
- C#
- VB.NET
public class ListViewItemDragEventArgs : EventArgs
Public Class ListViewItemDragEventArgs
Inherits EventArgs
Constructors
ListViewItemDragEventArgs(button)
Initializes a new instance of the ItemDragEventArgs class with a specified mouse button.
| Name | Type | Description |
|---|---|---|
| button | MouseButtons | A combination of MouseButtons values that indicates which mouse buttons were pressed. |
ListViewItemDragEventArgs(button, item)
Initializes a new instance of the ItemDragEventArgs class with a specified mouse button and the ListViewItem that is being dragged.
| Name | Type | Description |
|---|---|---|
| button | MouseButtons | A combination of MouseButtons values that indicates which mouse buttons were pressed. |
| item | ListViewItem | The ListViewItem being dragged. |
Properties
Button
MouseButtons: Returns a value that indicates which mouse buttons were pressed during the drag operation.
Item
ListViewItem: Returns the ListViewItem that is being dragged.
Used By
| Name | Description |
|---|---|
| ListViewItemDragEventHandler | Represents the method that will handle the ItemDrag event of a ListView control. |