Interface PdfExportData

interface PdfExportData {
    content: string;
    fitHorizontally?: boolean;
    fitVertically?: boolean;
    footer?: string;
    format?: PaperFormat;
    header?: string;
    inputType: "SVG" | "HTML";
    margin?: PageMargin;
    name: string;
    orientation?: PaperOrientation;
    outputType: "PDF";
    styles?: string;
}

Hierarchy

Properties

content: string
fitHorizontally?: boolean
fitVertically?: boolean
footer?: string
format?: PaperFormat

Default

'A4'
header?: string
inputType: "SVG" | "HTML"
margin?: PageMargin

Default

{ top: 0, right: 0, bottom: 0, left: 0 }
name: string
orientation?: PaperOrientation

Default

'portrait'
outputType: "PDF"
styles?: string

Generated using TypeDoc