SaveOptions constructor

init

Initializes a new instance with defaults: rasterize to PDF - false, add suffix - false.

def __init__(self):
    ...

init

Initializes a new instance with given parameters.

def __init__(self, rasterize_to_pdf, suffix):
    ...
Parameter Type Description
rasterize_to_pdf bool True, if all pages in the document need to be converted to images and put in a single PDF file
suffix str This text will be added to the end of file name, if not empty also sets AddSuffix to true

See Also