Methods for cXMLDOMNode
View method list in hierarchical order.
| Name | Type | Description | Defining Class |
|---|---|---|---|
| AddAttribute | Procedure | Encapsulates creation and addition of attributes to a node AddAttribute encapsulates creation and addition of attributes to a node. | cXMLDOMNode |
| AddAttributeNode | Function | cXMLDOMNode | |
| AddAttributeNS | Procedure | Creates an attribute node (that is namespace aware) and adds it to the element node AddAttributeNS encapsulates creation and addition of attributes to an element node. | cXMLDOMNode |
| AddCDataSection | Procedure | Encapsulates creation and addition of cDataSection nodes to a node AddCDataSection encapsulates creation and addition of cDataSection nodes to a node. | cXMLDOMNode |
| AddChildComment | Procedure | Encapsulates creation and addition of comments to a node AddChildComment encapsulates creation and addition of comments to a node. | cXMLDOMNode |
| AddChildNode | Function | Adds a child node of specified type AddChildNode adds a child node and returns the object handle of the newly created object. | cXMLDOMNode |
| AddChildProcessingInstruction | Procedure | Encapsulates creation and addition of processing instructions to a node AddChildProcessingInstruction encapsulates creation and addition of processing instructions to a node. | cXMLDOMNode |
| AddChildTextNode | Procedure | Encapsulates creation and addition of text nodes to a node AddChildTextNode encapsulates creation and addition of text nodes to a node. | cXMLDOMNode |
| AddElement | Function | Creates a new node and appends it to the list AddElement is not namespace aware and only works reliably for attributes with no namespaces and no prefixes. | cXMLDOMNode |
| AddElementNS | Function | Creates a new Element node (that is namespace aware), appends it to the list, and returns its object handle AddElementNS creates a new node and appends it to the list. | cXMLDOMNode |
| AllChildNodesText | Function | Returns a string that is the textual representation of the node and all of its descendants, excluding XML tags | cXMLDOMNode |
| AppendNode | Function | Appends a node to the end of list AppendNode appends a node to the end of list. | cXMLDOMNode |
| AttributeNodes | Function | Creates a collection of all attributes AttributeNodes is used to create a collection of all attributes. | cXMLDOMNode |
| AttributeValueNode | Function | Returns the object handle of an atttribute node whose Name matches the passed value AttributeValueNode is used to get the attribute node in an element node that matches the passed Name. | cXMLDOMNode |
| AttributeValueNodeNS | Function | Returns the object handle of an atttribute node whose NamespaceURI and BaseName matches the passed values | cXMLDOMNode |
| BaseNameFromQName | Function | Returns the BaseName from a Qualified Name string BaseNameFromQName is used to extract the BaseName from a qualified string (i.e., a string that contains a prefix and a basename). | cXMLDOMNode |
| ChildByIndex | Function | Can be used to iterate the direct children of an object ChildByIndex is a function that can be used to iterate the direct children of an object. | cObject |
| ChildElementNS | Function | Returns the object handle of the first child element node whose NamespaceURI and BaseName matches the passed values | cXMLDOMNode |
| ChildElementValueNS | Function | Finds the first child element node that matches the passed NamespaceURI and BaseName and returns its text value | cXMLDOMNode |
| ChildNodes | Function | Creates a collection of all nodes ChildNodes is for creating a collection of all nodes. | cXMLDOMNode |
| ChildNodeValue | Function | Gets the "value" of an element ChildNodeValue is not namespace aware and only works reliably for elements with no namespaces and no prefixes. | cXMLDOMNode |
| ClassSuperClass | Function | Returns the superclass of the passed class This returns the superclass of the passed class. | cObject |
| CloneNode | Function | Creates a clone of the passed node CloneNode creates a clone of the passed node. | cXMLDOMNode |
| Create | Function | Creates an object based on the passed Class Id The Create function is used to dynamically create objects. | cObject |
| CreateAttributeNode | Function | Creates an attribute in a document CreateAttributeNode creates an attribute in a document. | cXMLDOMNode |
| CreateAttributeNodeNS | Function | Creates an namespace aware attribute and returns its object handle CreateAttributeNodeNS creates an attribute node. | cXMLDOMNode |
| CreateCDATASectionNode | Function | Creates a cDataSection text node CreateCDataSectionNode creates a cDataSection text node. | cXMLDOMNode |
| CreateChildComment | Function | Creates a child comment CreateChildComment creates a child comment. | cXMLDOMNode |
| CreateChildNode | Function | Creates a node in the document and assign its interface to the new DataFlex object CreateChildNode creates a node in the document and assign its interface to the new DataFlex object. | cXMLDOMNode |
| CreateChildProcessingInstruction | Function | Creates a child processing instruction CreateChildProcessingInstruction creates a child processing instruction. | cXMLDOMNode |
| CreateChildTextNode | Function | Creates a child text node CreateChildTextNode creates a child text node. | cXMLDOMNode |
| CreateDocumentFragmentNode | Function | Creates an XML Document Fragment node CreateDocumentFragmentNode creates a document fragment node object. | cXMLDOMNode |
| CreateElementNode | Function | Creates an XML Element node CreateElementNode creates an node object for the element type. | cXMLDOMNode |
| CreateElementNodeNS | Function | Creates an XML Element node that is namespace aware CreateElementNodeNS creates an node object for the element type. | cXMLDOMNode |
| CreateNamed | Function | Creates an object based on the passed Class Id and assigns it a name Name based on a passed name Creates an object based on the passed Class Id and assigns it a name Name based on a passed name. | cObject |
| Destroy | Procedure | Destroys the object that receives the message and any child objects of that object The Destroy message destroys the object that receives the message. | cObject |
| ElementNodes | Function | Returns a collection of just the elements ElementNodes returns a collection of just the elements that meet the search requirements of the passed queried string. | cXMLDOMNode |
| EnumerateAttributes | Procedure | Provides a way to enumerate through all child attributes EnumerateAttributes provides a way to enumerate through all child attributes. | cXMLDOMNode |
| EnumerateElements | Procedure | Provides a way to enumerate through all child elements EnumerateElements provides a way to enumerate through all child elements. | cXMLDOMNode |
| EnumerateNodes | Procedure | Provides a way to enumerate through all child nodes EnumerateNodes provides a way to enumerate through all child nodes. | cXMLDOMNode |
| Exit_Application | Procedure | Starts the process of closing an application The Exit_Application message is used to close the program. | cObject |
| FindNode | Function | Searches an XML Document using an XPath query string returning the first matching node FindNode is used search for an XML node. | cXMLDOMNode |
| FindNodeList | Function | Searches an XML Document using an XPath query string returning a list of matching nodes FindNodeList is used search for an XML node. | cXMLDOMNode |
| FirstChild | Function | Finds the first child of a node and returns a handle to it FirstChild finds the first child of a node and returns a handle to it. | cXMLDOMNode |
| InsertBeforeNode | Function | Inserts a new node before the current node InsertBeforeNode inserts a new node before the current node. | cXMLDOMNode |
| IsClassOfClass | Function | Determines whether the target class is part of the searched class's hierarchy | cObject |
| IsElementNS | Function | Returns true if xml node is an element that matches the passed NamespaceURI and basename This function is used to search for an xml element by NamespaceURI and BaseName. | cXMLDOMNode |
| IsObjectOfClass | Function | Determines whether the passed class is part of the object's class hierarchy This returns True if the passed class is part of the object's class hierarchy. | cObject |
| LastChild | Function | Finds the last child of a node and returns a handle to it LastChild finds the last child of a node and returns a handle to it. | cXMLDOMNode |
| NextElementNS | Function | Returns the object handle of the next sibling element node whose NamespaceURI and BaseName matches the passed values | cXMLDOMNode |
| NextNode | Function | Returns the object's next sibling node and destroys the current node NextNode is used to find the node's next sibling Xml object. | cXMLDOMNode |
| NextSibling | Function | Returns a handle to the next sibling of this node in the parent's child list NextSibling returns a handle to the next sibling of this node in the parent's child list. | cXMLDOMNode |
| ObjectClass | Function | Returns the integer class ID assigned to the class this object is based on Returns the integer class ID assigned to the class this object is based on. | cObject |
| ParentNode | Function | Returns an object that is the parent of the current node | cXMLDOMNode |
| PrefixNameFromQName | Function | Returns the PrefixName from a Qualified Name string PrefixNameFromQName is used to extract the PrefixName from a qualified string (i.e., a string that contains a prefix and a basename). | cXMLDOMNode |
| PrefixToNamespaceURI | Function | Finds the NamespaceURi string for a prefix PrefixToNamespaceURI finds the namespaceURI for a prefix. | cXMLDOMNode |
| PreviousSibling | Function | Returns a handle to the previous sibling of this node in the parent's child list PreviousSibling returns a handle to the previous sibling of this node in the parent's child list. | cXMLDOMNode |
| RemoveNamedNode | Function | Removes the named node RemoveNamedNode is not namespace aware and only works reliably for elements with no namespaces and no prefixes. | cXMLDOMNode |
| RemoveNode | Function | Removes a node RemoveNode removes a node. | cXMLDOMNode |
| ReplaceNode | Function | Replaces a node ReplaceNode replaces a node. | cXMLDOMNode |
| Request_Destroy_Object | Procedure | Use the Destroy method instead This method is used to destroy an object and all of its children. | cObject |
| SetChildElementValueNS | Procedure | Creates or replaces a child element which matches the passed NamespaceURI and BaseName and sets the element's text value | cXMLDOMNode |
| SetChildNodeValue | Procedure | Allows a parent to change the text of one of its elements SetChildNodeValue is not namespace aware and only works reliably for attributes with no namespaces and no prefixes. | cXMLDOMNode |
| XSLTransformation | Function | Processes the node of the object receiving the message and all its children using the XSL stylesheet document passed, and returns the resulting transformation as a string | cXMLDOMNode |
| XSLTransformationToAddress | Function | Processes the node of the object receiving the message and all its children using the XSL stylesheet document passed, and returns the resulting transformation as a pointer | cXMLDOMNode |