Habanero.Faces.Win.TreeViewWin.TreeNodeCollectionWin.Add C# (CSharp) Method

Add() public method

Adds a new tree node to the end of the current tree node collection with the specified label text.
public Add ( string text ) : ITreeNode
text string The label text displayed by the TreeNode .
return ITreeNode
            public ITreeNode Add(string text)
            {
                ITreeNode treeNode = _controlFactory.CreateTreeNode(text);
                Add(treeNode);
                return treeNode;
            }

Same methods

TreeViewWin.TreeNodeCollectionWin::Add ( string name, string text ) : ITreeNode
TreeViewWin.TreeNodeCollectionWin::Add ( ITreeNode treeNode ) : int