Save document options.

const saveDocOption = {
saveAsTempFile: true,
showProgressBar: true,
docPDFOptimizer: true,
promptInfo: true
};
interface SaveDocOptionType {
    docPDFOptimizer?: boolean;
    promptInfo?: boolean;
    saveAsTempFile?: boolean;
    showProgressBar?: boolean;
}

Properties

docPDFOptimizer?: boolean

Indicates whether to enable the document PDF optimizer.

promptInfo?: boolean

Indicates whether to prompt information.

saveAsTempFile?: boolean

Indicates whether to save the document as a temporary file.

showProgressBar?: boolean

Indicates whether to display the progress bar.