Interface IXMLDataProvider
Provides the functionality for saving data to XML.
Namespace: Syncfusion.Windows.Forms.Edit.Interfaces
Assembly: Syncfusion.Edit.Windows.dll
Syntax
public interface IXMLDataProvider
Methods
AppendToXML(XmlElement)
Appends its data to some XML element.
Declaration
void AppendToXML(XmlElement parent)
Parameters
Type | Name | Description |
---|---|---|
System.Xml.XmlElement | parent | Parent elements, data have to be saved to. |
AppendToXML(XmlTextWriter)
Writes the data to XML.
Declaration
void AppendToXML(XmlTextWriter writer)
Parameters
Type | Name | Description |
---|---|---|
System.Xml.XmlTextWriter | writer | Writer, data have to be saved to. |