TreeList.AppendNode(Object, Int32, Int32, Int32, Int32) Method
Appends a new node with the specified settings.
Namespace: DevExpress.XtraTreeList
Assembly: DevExpress.XtraTreeList.v24.2.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList
#Declaration
public virtual TreeListNode AppendNode(
object nodeData,
int parentNodeId,
int imageIndex,
int selectImageIndex,
int stateImageIndex
)
#Parameters
Name | Type | Description |
---|---|---|
node |
Object | An array of values or a Data |
parent |
Int32 | An integer value specifying the parent node’s identifier. |
image |
Int32 | A zero-based index of the image displayed within the node. |
select |
Int32 | A zero-based index of the image displayed within the node when it is focused or selected. |
state |
Int32 | An integer value that specifies the index of the node’s state image. |
#Returns
Type | Description |
---|---|
Tree |
A Tree |
#Remarks
Use the AppendNode method to append a new node to the specified node’s child collection. Use the parentNodeId parameter to specify the parent node by its identifier. Node identifiers are returned by the TreeListNode.Id property. To add a node at the root level, the parentNodeId parameter must be set to the value of the TreeList.RootValue property.
The nodeData parameter specifies data for the columns of the node that is to be created. This parameter value can be an array of values or a DataRow object. The number and order of items in the array/DataRow object must match the number and order of Tree List columns.
Refer to the Nodes topic to learn more.