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

    Web Publication Audiobook format specific ReaderDocument. The source content document will always be an audio resource.

    Since IWpAudiobookReaderDocument does not represent visual content, they can not be rendered in a ReaderView.

    The ReaderDocument may represent a part of the source media resource. See getTimeIntervalInMediaResource().

    interface IWpAudiobookReaderDocument {
        fetchContentBlockTree(): Promise<IContentBlockTree>;
        fetchContentLocationForEntireDocument(): Promise<IContentLocation>;
        fetchViewportDimensions(): Promise<IDimensions>;
        getAvailableSyncMediaFormats(): SyncMediaFormat[];
        getContentLocation(): IContentLocation;
        getDurationMs(): number;
        getIndexInSpine(): number;
        getLocator(): Locator;
        getReaderPublication(): IReaderPublication;
        getSourceContentDocument(): IContentDocument;
        isReflowable(): boolean;
        isRenderable(): boolean;
        toJSON(): IReaderDocumentData;
    }

    Hierarchy (View Summary)

    Methods

    • Returns the duration of this ReaderDocument in milliseconds.

      Returns number

    • The index of this reader document within the parent IReaderPublication spine.

      Returns number

    • If this document can be reflowed into multiple pages.

      Returns boolean