|
|
|
|
|
|
| |
   
cloneNode()
Is a member of:
|
DOMDocument
XMLDOMNode
XMLDOMAttribute
XMLDOMCDATASection
XMLDOMComment
XMLDOMDocumentFragment
XMLDOMDocumentType
XMLDOMElement
XMLDOMEntity
XMLDOMEntityReference
XMLDOMNotation
XMLDOMProcessingInstruction
XMLDOMText
XTLRuntime
|
set objXMLDOMNode = objXMLDOMNode.cloneNode(deep)
Pass one parameter (deep) that is either True or False. It indicates if the Node should be cloned (copied) with its children included or not. Any changes made to this Node will not be reflected in the
DOMDocument.
Note that the new Node returned will be of the XMLDOMNode interface.    
This manuscript is an abridged version of a chapter
from the Manning
Publications book XML
Programming with VB and ASP. This chapter looks at the Microsoft DOM objects. NOTE: Most images have been removed to increase speed and many of the code comments have also been removed for presentation. Please purchase the book to enjoy the full experience of all the chapters with images and code comments!
|
|
|
|
|
|
|
|