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

    Represents the par element in epub media overlays.

    See https://www.w3.org/publishing/epub3/epub-mediaoverlays.html#sec-smil-par-elem

    interface IMediaOverlayParNodeData {
        attributes: IAttributeData[];
        audio: IMediaOverlayAudioNodeData;
        childNodes: INodeData[];
        namespaceURI: string;
        nodeName: string;
        nodeType: XML_ELEMENT;
        prefix: string;
        text: IMediaOverlayTextNodeData;
    }

    Hierarchy (View Summary)

    Properties

    attributes: IAttributeData[]

    The list of attributes defined on this element.

    The

    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.

    The child node.