Click to return to the XML (Extensible Markup Language) home page    
IXMLDOMElement::getElemen...     IXMLDOMElement::removeAtt...     IXMLDOMElement Interface    
Web Workshop  |  XML (Extensible Markup Language)

IXMLDOMElement::normalize Method


Normalizes all descendent elements; combines two or more adjacent text nodes into one unified text node.

Visual Basic Syntax

oXMLDOMElement.normalize

C/C++ Syntax

HRESULT normalize(void);

C/C++ Return Values

S_OK
Value returned if successful.
E_FAIL
Value returned if an error occurs. 

Remarks

This method converts all text node descendants of this element (at any depth) into a "normal" form where no text nodes are adjacent. In normal form, text nodes can be separated only by markup (such as tags, comments, processing instructions, CDATA sections, and entity references). The normal form is useful for operations that require a particular document tree structure, and ensures that the DOM view of a document is identical when saved and reloaded.

Collapsed node objects are automatically deleted.



Back to topBack to top

Did you find this topic useful? Suggestions for other topics? Write us!

© 1999 Microsoft Corporation. All rights reserved. Terms of use.