Click or drag to resize

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
)

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