The format options available for a label.

PrintOption

interface PrintOption {
    supportedDocumentDetails: SupportedDocumentDetail[];
    supportedDPIs?: number[];
    supportedFileJoiningOptions: boolean[];
    supportedPageLayouts: string[];
}

Properties

supportedDocumentDetails: SupportedDocumentDetail[]

A list of the supported documented details.

PrintOption

supportedDPIs?: number[]

A list of the supported DPI options for a document.

PrintOption

supportedFileJoiningOptions: boolean[]

A list of the supported needFileJoining boolean values for a document.

PrintOption

supportedPageLayouts: string[]

A list of the supported page layout options for a document.

PrintOption