[]
Loads the grid from an Xml document.
public void ReadXml(string fileName, XmlOptions options = XmlOptions.All)
| Type | Name | Description |
|---|---|---|
| string | fileName | Name of the file to load, including the path. |
| XmlOptions | options | Options that allows to choose which elements of FlexGrid should be loaded |
Loads the grid from an Xml document.
public void ReadXml(TextReader tr, XmlOptions options = XmlOptions.All)
| Type | Name | Description |
|---|---|---|
| TextReader | tr | TextReader object to use for loading the grid. |
| XmlOptions | options | Options that allows to choose which elements of FlexGrid should be loaded |
Loads the grid from an Xml document.
public void ReadXml(Stream stream, XmlOptions options = XmlOptions.All)
| Type | Name | Description |
|---|---|---|
| Stream | stream | Stream object to use for loading the grid. |
| XmlOptions | options | Options that allows to choose which elements of FlexGrid should be loaded |
Loads the grid from an Xml document.
public void ReadXml(XmlReader xr, XmlOptions options = XmlOptions.All)
| Type | Name | Description |
|---|---|---|
| XmlReader | xr | XmlReader object to use for loading the grid. |
| XmlOptions | options | Options that allows to choose which elements of FlexGrid should be loaded |
Loads the grid from an Xml document.
public virtual void ReadXml(XmlDocument doc)
| Type | Name | Description |
|---|---|---|
| XmlDocument | doc | XmlDocument object to use for loading the grid. |
Loads the grid from an Xml document.
public void ReadXml(XmlDocument doc, XmlOptions options)
| Type | Name | Description |
|---|---|---|
| XmlDocument | doc | XmlDocument object to use for loading the grid. |
| XmlOptions | options | Options that allows to choose which elements of FlexGrid should be loaded |
Loads the grid from an Xml document.
public virtual void ReadXml(XmlNode node)
| Type | Name | Description |
|---|---|---|
| XmlNode | node | XmlNode object to use for loading the grid. |
Loads the grid from an Xml document.
public void ReadXml(XmlNode node, XmlOptions options)
| Type | Name | Description |
|---|---|---|
| XmlNode | node | XmlNode object to use for loading the grid. |
| XmlOptions | options | Options that allows to choose which elements of FlexGrid should be loaded |