Skip to main content

BeforeDragNodeEventArgs.Nodes Property

Gets the list of nodes that are about to be dragged.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

public IList<TreeListNode> Nodes { get; set; }

Property Value

Type Description
IList<TreeListNode>

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