January 2003
Beginner to intermediate
1200 pages
23h 42m
English
The XMLDOMText object holds the text content of an element or attribute. If there is no markup inside an element but there is text, that element will contain only one node: a text node that holds the text. (In mixed-content models, text nodes can have sibling element nodes.)
When a document is first made available to the XML DOM, all text is normalized, which means that there is only one text node for each block of text. You can actually create text nodes that are adjacent to each other, although they will not be saved as distinct the next time the document is opened. (It's worth noting that the normalize method on the XMLDOMElement object merges adjacent text nodes into single nodes.)
Here are the base properties of the ...