public class PresentationSaveOptions extends SaveOptions
Save options for Presentation documents.
Constructor and Description |
---|
PresentationSaveOptions()
Initializes a new instance of PresentationSaveOptions class with default values.
|
PresentationSaveOptions(boolean overwriteExistingFile)
Initializes a new instance of PresentationSaveOptions class with specified output type and overwrite flag.
|
PresentationSaveOptions(int fileFormat)
Initializes a new instance of PresentationSaveOptions class with specified output file format.
|
PresentationSaveOptions(int fileFormat,
boolean overwriteExistingFile)
Initializes a new instance of PresentationSaveOptions 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 PresentationSaveOptions()
Initializes a new instance of PresentationSaveOptions class with default values.
public PresentationSaveOptions(boolean overwriteExistingFile)
Initializes a new instance of PresentationSaveOptions class with specified output type and overwrite flag.
overwriteExistingFile
- Flag whether to overwrite signed file with same file.public PresentationSaveOptions(int fileFormat)
Initializes a new instance of PresentationSaveOptions class with specified output file format.
fileFormat
- Output file type PresentationSaveFileFormat
.public PresentationSaveOptions(int fileFormat, boolean overwriteExistingFile)
Initializes a new instance of PresentationSaveOptions class with specified output file format and overwrite flag.
fileFormat
- Output file type PresentationSaveFileFormat
.overwriteExistingFile
- Flag whether to overwrite signed file with same file.