SheetXL - v0.3.20
    Preparing search index...

    Represents the native data types that can be stored on the clipboard and accessed via the Clipboard API.

    interface NativeItems {
        html?: Document;
        image?: Blob;
        text?: string;
    }
    Index

    Properties

    Properties

    html?: Document

    HTML content from the clipboard, represented as a Document object.

    image?: Blob

    Image data from the clipboard, represented as a Blob object.

    text?: string

    Plain text content from the clipboard.