gb.xml

This component allows you to read and write XML files.

Author Adrien Prokopowicz.
Implements XML management.

Class Description
XmlCDATANode This class represents a CDATA section node.
XmlCommentNode This class represents a comment node.
XmlDocument This class represents a XML document.
XmlElement This class represents an Element in a XML document.
XmlExplorer
XmlNode The Node class is the base type for the entire Document Object Model. It represents a single node in the document tree.
XmlReader This class represents a XML stream reader implementing the SAX API.
XmlReaderNodeType
XmlTextNode
XmlWriter This class allows you to write a XML file using a linear mode, that is, once you open a XML file for writting, you have to write each node in order, from the first node to the last one, and from the more superficial to the deeper one. It is less flexible than the XML tree model, but can be easier to use for some tasks. It can use less memory resources too for larger files.

See also