Gets or sets the add node provider. The provider is to render a piece of html to the client, usually is a ul element. for example: HtmlGenericControl ulRoot = new HtmlGenericControl( "ul" ); astvMyTree.TreeViewHelper.ConvertTree( ulRoot, root, false ); foreach( Control c in ulRoot.Controls ) c.RenderControl( writer );
Namespace: Geekees.Common.Controls
Assembly: ASTreeView (in ASTreeView.dll)
Syntax
| Visual Basic (Declaration) |
|---|
| <CategoryAttribute("Ajax"), _ BrowsableAttribute(True), _ DefaultValueAttribute("AddNode.aspx")> Public Property AddNodeProvider As String |
| C# |
|---|
| [CategoryAttribute("Ajax")] [BrowsableAttribute(True)] [DefaultValueAttribute("AddNode.aspx")] public string AddNodeProvider { get; set; } |
| C++ |
|---|
| [CategoryAttribute(L"Ajax")] [BrowsableAttribute(True)] [DefaultValueAttribute(L"AddNode.aspx")] public property string AddNodeProvider sealed { String get(); void set(String value); } |
| J# |
|---|
| /** @attribute CategoryAttribute("Ajax") */ /** @attribute BrowsableAttribute(True) */ /** @attribute DefaultValueAttribute("AddNode.aspx") */ /** property */ public string get_AddNodeProvider(); /** property */ public void set_AddNodeProvider(string value); |
| JScript |
|---|
| public function get AddNodeProvider() : String public function set AddNodeProvider(value : String); |
Property Value
The add node provider.