Skip to main content
A newer version of this page is available. .

BeforeDragNodeEventArgs.Nodes Property

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

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v18.2.dll

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