Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BeforeDragNodeEventArgs.Nodes Property

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<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