TreeView.CreateNode Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a new instance of the TreeNode class. The CreateNode() is a helper method.
protected public:
virtual System::Web::UI::WebControls::TreeNode ^ CreateNode();
protected internal virtual System.Web.UI.WebControls.TreeNode CreateNode ();
abstract member CreateNode : unit -> System.Web.UI.WebControls.TreeNode
override this.CreateNode : unit -> System.Web.UI.WebControls.TreeNode
Protected Friend Overridable Function CreateNode () As TreeNode
Returns
A new instance of the TreeNode.
Remarks
The CreateNode method is a helper method that returns a new instance of the TreeNode class.
The CreateNode method is used primarily by control developers. Control developers that want to extend the TreeView class by extending the TreeNode class should override this method to return an object that derives from the TreeNode. A common reason to extend the TreeNode class is to override the RenderPreText and RenderPostText methods.