TreeGridViewDragInfo Constructor |
Initializes a new instance of the TreeGridDragInfo class.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public TreeGridViewDragInfo(
TreeGridView control,
Object parent,
Object item,
Nullable<int> childIndex,
GridDragPosition position
)
Public Sub New (
control As TreeGridView,
parent As Object,
item As Object,
childIndex As Nullable(Of Integer),
position As GridDragPosition
)
new :
control : TreeGridView *
parent : Object *
item : Object *
childIndex : Nullable<int> *
position : GridDragPosition -> TreeGridViewDragInfo
Parameters
- control
- Type: Eto.FormsTreeGridView
The parent widget that this info belongs to - parent
- Type: SystemObject
Parent of the item dragging to. - item
- Type: SystemObject
Item user is dragging to, or null if dragging as a child of the parent node. - childIndex
- Type: SystemNullableInt32
Index of the item relative to the parent if known, otherwise null to determine the index when requsted. - position
- Type: Eto.FormsGridDragPosition
The position of the cursor relative to the item or parent if item is null.
See Also