GridViewDragInfo Constructor |
Initializes a new instance of the GridDragInfo class.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public GridViewDragInfo(
GridView control,
Object item,
int index,
GridDragPosition position
)
Public Sub New (
control As GridView,
item As Object,
index As Integer,
position As GridDragPosition
)
new :
control : GridView *
item : Object *
index : int *
position : GridDragPosition -> GridViewDragInfo
Parameters
- control
- Type: Eto.FormsGridView
The parent widget that this info belongs to - item
- Type: SystemObject
Item user is dragging to. - index
- Type: SystemInt32
Index where the item should be inserted, or -1 if dragging ontop of item. - position
- Type: Eto.FormsGridDragPosition
The position of the cursor relative to the item under the cursor.
See Also