Gets or sets the data table root node value. When you set a datatable as datasource to astreeview, the astreeview need to know from which line of data it should start to convert to tree nodes.


Namespace: Geekees.Common.Controls
Assembly: ASTreeView (in ASTreeView.dll)

Syntax

Visual Basic (Declaration)
<BrowsableAttribute(False), _
 CategoryAttribute("Data")>

Public Property DataTableRootNodeValue As String
C#
[BrowsableAttribute(False)]
[CategoryAttribute("Data")]
public string DataTableRootNodeValue { get; set; }
C++
[BrowsableAttribute(False)]
[CategoryAttribute(L"Data")]
public property string DataTableRootNodeValue sealed  {
    String get();
    void set(String value);
}
J#
/** @attribute BrowsableAttribute(False) */
/** @attribute CategoryAttribute("Data") */
/** property */
public string get_DataTableRootNodeValue();

/** property */
public void set_DataTableRootNodeValue(string value);
JScript
public function get DataTableRootNodeValue() : String

public function set DataTableRootNodeValue(value : String);

Property Value

The data table root node value.

See Also