AboutSupportDeveloper GuideVersion 47.154.100.2
OpenFin JavaScript API
    Preparing search index...

    Interface WriteImageClipboardRequest

    interface WriteImageClipboardRequest {
        image: string;
        type?: ClipboardSelectionType;
    }
    Index
    image: string

    Can be either a base64 string, or a DataURL string. If using DataURL, the supported formats are data:image/png[;base64], and data:image/jpeg[;base64],. Using other image/ DataURLs will throw an Error.

    The type of clipboard to write to, can be 'clipboard' or 'selection'. Defaults to 'clipboard'. Use 'selection' for linux only.