WordProcessingSaveOptions constructor

Contents
[ ]

init

Initializes a new instance of WordProcessingSaveOptions class with default values.

def __init__(self):
    ...

init

Initializes a new instance of WordProcessingSaveOptions class with specified output file format.

def __init__(self, file_format):
    ...
Parameter Type Description
file_format groupdocs.signature.domain.WordProcessingSaveFileFormat Output file type WordProcessingSaveFileFormat.

init

Initializes a new instance of WordProcessingSaveOptions class with specified output type and overwrite flag.

def __init__(self, overwrite_existing_file):
    ...
Parameter Type Description
overwrite_existing_file bool Flag whether to overwrite signed file with same file.

init

Initializes a new instance of WordProcessingSaveOptions class with specified output file format and overwrite flag.

def __init__(self, file_format, overwrite_existing_file):
    ...
Parameter Type Description
file_format groupdocs.signature.domain.WordProcessingSaveFileFormat Output file type WordProcessingSaveFileFormat.
overwrite_existing_file bool Flag whether to overwrite signed file with same file.

See Also