[]
Loads the treview from an Xml document.
public void ReadXml(string fileName)
Public Sub ReadXml(fileName As String)
| Type | Name | Description |
|---|---|---|
| string | fileName | Name of the file to load, including the path. |
Loads the treview from an Xml document.
public void ReadXml(TextReader tr)
Public Sub ReadXml(tr As TextReader)
| Type | Name | Description |
|---|---|---|
| TextReader | tr | TextReader object to use for loading the treeview. |
Loads the treview from an Xml document.
public void ReadXml(Stream stream)
Public Sub ReadXml(stream As Stream)
| Type | Name | Description |
|---|---|---|
| Stream | stream | Stream object to use for loading the treeview. |
Loads the treview from an Xml document.
public void ReadXml(XmlReader xr)
Public Sub ReadXml(xr As XmlReader)
| Type | Name | Description |
|---|---|---|
| XmlReader | xr | XmlReader object to use for loading the treeview. |
Loads the treview from an Xml document.
public void ReadXml(XmlDocument doc)
Public Sub ReadXml(doc As XmlDocument)
| Type | Name | Description |
|---|---|---|
| XmlDocument | doc | XmlDocument object to use for loading the treeview. |
Loads the treview from an Xml document.
public void ReadXml(XmlNode node)
Public Sub ReadXml(node As XmlNode)
| Type | Name | Description |
|---|---|---|
| XmlNode | node | XmlNode object to use for loading the treeview. |