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