XMLCDATASection

From Xojo Documentation

Class (inherits from XMLNode)

A CDATA section in XML is data that it ignored by the XML parser. You create an XMLCDATASection using XMLDocument.CreateCDATASection.

Properties
ChildCount fa-lock-32.png Name Prefix fa-lock-32.png
FirstChild fa-lock-32.png NamespaceURI fa-lock-32.png PreviousSibling fa-lock-32.png
LastChild fa-lock-32.png NextSibling fa-lock-32.png ToString fa-lock-32.png
LastError fa-lock-32.png OwnerDocument fa-lock-32.png Type fa-lock-32.png
LocalName fa-lock-32.png Parent fa-lock-32.png Value


Methods
AppendChild GetAttributeNode SetAttribute
Child Insert SetAttributeNode
Clone RemoveAttributeNode XQL
Compare RemoveChild
GetAttribute ReplaceChild

Example

The following XML is stored in a constant called kXML:

 <?xml version="1.0" encoding="UTF-8"?>
 <League>
 	<Team name="Seagulls">
 		<Player name="Bob" position="1B" />
 		<Player name="Tom" position="2B" />
 	</Team>
 	<Team name="Pigeons">
 		<Player name="Bill" position="1B" />
 		<Player name="Tim" position="2B" />
 	</Team>
 	<Team name="Crows">
 		<Player name="Ben" position="1B" />
 		<Player name="Ty" position="2B" />
 	</Team>
 </League>

To add a CDATA section to the first team in the XML:

Var xml As New XmlDocument(kXml)

// Create a CDATA section node and assign it a value
Var xcdata As XmlCDATASection
xcdata = xml.CreateCDATASection("TestCDATASection")
xcdata.Value = "<html><h1>Hello!</h1></html>"

// Add the CDATA section to the XML document
xml.DocumentElement.FirstChild.AppendChild(xcdata)

TextArea1.Value = xml.ToString

See Also

XMLAttribute, XMLComment, XMLDocument, XMLElement, XMLNode classes; XMLDocument.CreateCDATASection method.