Colibrio Reader Framework API - Cloud license
    Preparing search index...

    Interface IXmlElementNodeData

    Represents the contents of an XML or HTML element.

    interface IXmlElementNodeData {
        attributes: IAttributeData[];
        childNodes: INodeData[];
        namespaceURI: string;
        nodeName: string;
        nodeType: XML_ELEMENT;
        prefix: string;
    }

    Hierarchy (View Summary)

    Properties

    attributes: IAttributeData[]

    The list of attributes defined on this element.

    childNodes: INodeData[]

    The child nodes of this element.

    namespaceURI: string
    nodeName: string

    The element name without any XML namespace prefix.

    nodeType: XML_ELEMENT
    prefix: string

    The namespace prefix used for this element.