Returns the last child node.
objXMLDOMNode = oXMLDOMNode.lastChild
Object. The property is read-only. If there are no children, it returns Null.
This value depends on the value of the nodeType property.
NODE_ATTRIBUTE, NODE_DOCUMENT, NODE_DOCUMENT_FRAGMENT, NODE_DOCUMENT_TYPE, NODE_ELEMENT, NODE_ENTITY, NODE_ENTITY_REFERENCE | Returns the last child node. If there are no children, returns Null. |
NODE_CDATA_SECTION, NODE_COMMENT, NODE_NOTATION, NODE_PROCESSING_INSTRUCTION, NODE_TEXT | Returns Null. These node types cannot have children. |
The following VBScript example creates a new XMLDOMNode (element) object, and then inserts it before the last child of the top-level node:
Dim xmlDoc Dim root Dim newNode Dim currNode Set xmlDoc = CreateObject("Msxml2.DOMDocument") xmlDoc.async = False xmlDoc.load("c:\books.xml") Set root = xmlDoc.documentElement MsgBox root.xml Set newNode = xmlDoc.createNode (1, "VIDEOS", "") Set currNode = root.insertBefore(newNode, root.lastChild) MsgBox root.xml
Applies To: XMLDOMAttribute Object | XMLDOMCDATASection Object | XMLDOMCharacterData Object | XMLDOMComment Object | DOMDocument Object | XMLDOMDocumentFragment Object | XMLDOMDocumentType Object | XMLDOMElement Object | XMLDOMEntity Object | XMLDOMEntityReference Object | XMLDOMNode Object | XMLDOMNotation Object | XMLDOMProcessingInstruction Object | XMLDOMText Object | XTLRuntime Object