KB Article A1042
Visible to All Users

How to insert a TreeList node into a specific position

Description:
Is it possible to insert a node into the tree above/below a specific child node rather than just append it to the end of the child collection?

Answer:
Yes, this is possible. You should use two methods to do this:
A) Create a node via the TreeList.AppendNode method;
B) move the node to the desired index within its parent via the TreeList.SetNodeIndex method.

C#
using DevExpress.XtraTreeList.Nodes; TreeListNode parentNode = treeList1.Nodes[0]; // insert a new node as the first child within its parent TreeListNode newNode = treeList1.AppendNode(new object[] {"New first child"}, parentNode); treeList1.SetNodeIndex(newNode, 0);
Visual Basic
Imports DevExpress.XtraTreeList.Nodes Dim parentNode As TreeListNode = treeList1.Nodes(0) ' insert a new node as the first child within its parent Dim newNode As TreeListNode = treeList1.AppendNode(New Object() {"New first child"}, parentNode) treeList1.SetNodeIndex(newNode, 0)

See Also:
How to reorder XtraTreeList nodes via drag-and-drop

Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.