LOTUSSCRIPT/COM/OLE CLASSES
Note This class is new with Release 6.
Note This class is not supported in COM.
Derived Classes
NotesDOMAttributeNode, NotesDOMCharacterDataNode, NotesDOMDocumentFragmentNode, NotesDOMDocumentNode, NotesDOMDocumentTypeNode, NotesDOMElementNode, NotesDOMEntityNode, NotesDOMEntityReferenceNode, NotesDOMNotationNode, NotesDOMProcessingInstructionNode, NotesDOMXMLDeclNode inherit from NotesDOMNode class.
Containment
Contains: NotesDOMNamedNodeMap, NotesDOMNodeList
Properties
Attributes
FirstChild
HasChildNodes
IsNull
LastChild
LocalName
NamespaceURI
NextSibling
NodeName
NodeType
NodeValue
NumberOfChildNodes
ParentNode
Prefix
PreviousSibling
Methods
AppendChild
Clone
RemoveChild
ReplaceChild
Creation and access
The NotesDOMNode class is abstract and you do not create NotesDOMNode objects. Instead, you create objects for a specific derived node class by using the appropriate Create method of the NotesDOMDocumentNode class.
Objects of class NotesDOMNode and its derived classes, retain an association with the NotesDOMParser object from which they were created. This method will only work if the two nodes in question were derived from the same DOM parser.
Usage
For more information about DOM nodes, see Document Object Model Core at http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-1950641247.
See Also