NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

TreeNode Constructor (String, TreeNode[])

Creates a TreeNode object.

[Visual Basic]
Overloads Public Sub New( _
   ByVal text As String, _
   ByVal children() As TreeNode _
)
[C#]
public TreeNode(
   string text,
   TreeNode[] children
);
[C++]
public: TreeNode(
   String* text,
   TreeNode* children[]
);
[JScript]
public function TreeNode(
   text : String,
   children : TreeNode[]
);

Parameters

text
Label of new node
children
Array of child nodes

See Also

TreeNode Class | TreeNode Members | System.WinForms Namespace | TreeNode Constructor Overload List