BeforeDragNodeEventArgs.Nodes Property
In This Article
Gets the list of nodes that are about to be dragged.
Namespace: DevExpress.XtraTreeList
Assembly: DevExpress.XtraTreeList.v24.2.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList
#Declaration
public IList<TreeListNode> Nodes { get; set; }
#Property Value
Type | Description |
---|---|
IList<Tree |
The list of nodes that are about to be dragged. |
#Remarks
In the case of multiple node drag-and-drop (see TreeListOptionsDragAndDrop.DragNodesMode), use the Nodes property to access the list of selected nodes that are about to be dragged.
If only a single node can be dragged at one time, use the Node inherited property instead. The Nodes list will also contain the node specified by the Node property.
See Also