public class WordProcessingSaveOptions extends SaveOptions
Save options for WordProcessing documents.
Constructor and Description |
---|
WordProcessingSaveOptions()
Initializes a new instance of WordProcessingSaveOptions class with default values.
|
WordProcessingSaveOptions(boolean overwriteExistingFile)
Initializes a new instance of WordProcessingSaveOptions class with specified output type and overwrite flag.
|
WordProcessingSaveOptions(int fileFormat)
Initializes a new instance of WordProcessingSaveOptions class with specified output file format.
|
WordProcessingSaveOptions(int fileFormat,
boolean overwriteExistingFile)
Initializes a new instance of WordProcessingSaveOptions class with specified output file format and overwrite flag.
|
Modifier and Type | Method and Description |
---|---|
int |
getFileFormat()
Gets or sets file format of signed document.
|
void |
setFileFormat(int value)
Gets or sets file format of signed document.
|
String |
toString()
Override string conversion
|
getAddMissingExtenstion, getOverwriteExistingFiles, getPassword, getUseOriginalPassword, setAddMissingExtenstion, setOverwriteExistingFiles, setPassword, setUseOriginalPassword
public WordProcessingSaveOptions()
Initializes a new instance of WordProcessingSaveOptions class with default values.
public WordProcessingSaveOptions(boolean overwriteExistingFile)
Initializes a new instance of WordProcessingSaveOptions class with specified output type and overwrite flag.
overwriteExistingFile
- Flag whether to overwrite signed file with same file.public WordProcessingSaveOptions(int fileFormat)
Initializes a new instance of WordProcessingSaveOptions class with specified output file format.
fileFormat
- Output file type WordProcessingSaveFileFormat
.public WordProcessingSaveOptions(int fileFormat, boolean overwriteExistingFile)
Initializes a new instance of WordProcessingSaveOptions class with specified output file format and overwrite flag.
fileFormat
- Output file type WordProcessingSaveFileFormat
.overwriteExistingFile
- Flag whether to overwrite signed file with same file.