PDF Web Viewer
    Preparing search index...

    Interface IDocumentTab

    Represents a single open document tab as exposed through the public API.

    interface IDocumentTab {
        hasUnsavedChanges: boolean;
        id: string;
        isActive: boolean;
        isSideBySide: boolean;
        name: string;
    }
    Index

    Properties

    hasUnsavedChanges: boolean

    Whether the document has unsaved changes (undo stack is non-empty)

    id: string

    Unique identifier for the tab (matches the document ID)

    isActive: boolean

    Whether this is the currently active (focused) tab

    isSideBySide: boolean

    Whether this tab is currently in Side-by-Side view mode

    name: string

    Display name — typically the filename without extension