TreeGridViewDragInfoItem Property |
Gets or sets the item to drag to, or null if dragging below the
Parent node.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public Object Item { get; set; }
Public Property Item As Object
Get
Set
member Item : Object with get, set
Property Value
Type:
ObjectRemarks
This specifies the target item to drag to. Note that if
Position is Before or After,
then you should use
InsertIndex to insert the nodes at that specified location.
If you do not want to allow inserting, use
RestrictToOver in the
DragOver event,
or you can also use
RestrictToInsert to only allow inserting items.
See Also