Top | ![]() |
![]() |
![]() |
![]() |
GXmlxCDATASectionGXmlxCDATASection — An XML CDATA section, which contains non-XML data that is stored in an XML document. |
#define | GXML_TYPE_XCDATA_SECTION |
struct | GXmlxCDATASection |
struct | GXmlxCDATASectionClass |
To create one, use gxml_xdocument_create_cdata_section()
.
An XML example would be like:
<![CDATA[Here contains non-XML data, like code, or something that requires a lot of special XML entities.]]>.
It is a type of Text node. For more, see: http://www.w3.org/TR/DOM-Level-1/level-one-core.html#ID-667469212
#define GXML_TYPE_XCDATA_SECTION (gxml_xcdata_section_get_type ())
The type for GXmlxCDATASection.
struct GXmlxCDATASection { GXmlxText parent_instance; GXmlxCDATASectionPrivate * priv; };
An XML CDATA section, which contains non-XML data that is stored in an XML document.
To create one, use gxml_xdocument_create_cdata_section()
.
An XML example would be like:
<![CDATA[Here contains non-XML data, like code, or something that requires a lot of special XML entities.]]>.
It is a type of Text node. For more, see: http://www.w3.org/TR/DOM-Level-1/level-one-core.html#ID-667469212
struct GXmlxCDATASectionClass { GXmlxTextClass parent_class; };
The class structure for GXML_TYPE_XCDATA_SECTION
. All the fields in this structure are private and should never be accessed directly.