structured-render - v1.2.0
    Preparing search index...

    Enumeration OutputPdfType

    Output method types for jsPDF. Extracted from: https://raw.githack.com/MrRio/jsPDF/master/docs/jsPDF.html#output

    Index

    Enumeration Members

    ArrayBuffer: "arraybuffer"

    Returns the PDF as an ArrayBuffer.

    Blob: "blob"

    Returns the PDF as a Blob.

    BlobUri: "bloburi"

    Returns a blob URI string pointing to the generated PDF.

    BlobUrl: "bloburl"

    Alias for BlobUri. Returns a blob URL string pointing to the generated PDF.

    DataUri: "datauri"

    Navigates the current page location to the generated data URI. Returns undefined.

    DataUriString: "datauristring"

    Returns the PDF as a base-64 data URI string.

    DataUrl: "dataurl"

    Alias for DataUri. Navigates the current page location to the generated data URL. Returns undefined.

    DataUrlNewWindow: "dataurlnewwindow"

    Opens the generated PDF data URL in a new window. Returns the Window or null. Throws if the global is not a window object (e.g. Node).

    DataUrlString: "dataurlstring"

    Alias for DataUriString. Returns the PDF as a base-64 data URL string.

    Download: "download"

    Simply download the file.

    PdfJsNewWindow: "pdfjsnewwindow"

    Opens the PDF via pdf.js in a new window. Returns the Window or null.

    PdfObjectNewWindow: "pdfobjectnewwindow"

    Opens a PDF object in a new window. Returns the Window or null. Throws if the global is not a window object (e.g. Node).