TreeNodeCollection::Add Method (String^, String^)

 

Creates a new tree node with the specified key and text, and adds it to the collection.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
virtual TreeNode^ Add(
	String^ key,
	String^ text
)

Parameters

key
Type: System::String^

The name of the tree node.

text
Type: System::String^

The text to display in the tree node.

Return Value

Type: System.Windows.Forms::TreeNode^

The TreeNode that was added to the collection.

The Name property corresponds to the key for a TreeNode in the TreeNodeCollection.

You can also add new TreeNode objects to the collection by using the AddRange or Insert methods.

.NET Framework
Available since 2.0
Return to top
Show: