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

TreeListNodes.Add(Object[]) Method

Adds a new child TreeListNode containing the specified values.

Namespace: DevExpress.XtraTreeList.Nodes

Assembly: DevExpress.XtraTreeList.v19.2.dll

Declaration

public TreeListNode Add(
    params object[] nodeData
)

Parameters

Name Type Description
nodeData Object[]

An array of values or a DataRow object, used to initialize the created node’s cells.

Returns

Type Description
TreeListNode

The created TreeListNode object.

Remarks

This method calls the TreeList.AppendNode(nodeData, ParentNode) method. The TreeListNodes.ParentNode property’s value is passed as the method’s second parameter. See the TreeList.AppendNode topic to learn more.

The following code snippets (auto-collected from DevExpress Examples) contain references to the Add(Object[]) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also