public final class PdfSaveOptions extends Object implements ISaveOptions
Allows to specify custom options for generating and saving PDF (Portable Document Format) documents
Constructor and Description |
---|
PdfSaveOptions() |
Modifier and Type | Method and Description |
---|---|
int |
getCompliance()
Specifies the PDF standards compliance level for output documents.
|
String |
getPassword()
Password, which will be applied to the generated PDF document as user
password, required for opening.
|
void |
setCompliance(int value)
Specifies the PDF standards compliance level for output documents.
|
void |
setPassword(String value)
Password, which will be applied to the generated PDF document as user
password, required for opening.
|
public final int getCompliance()
Specifies the PDF standards compliance level for output documents. Default is PdfCompliance.Pdf15.
public final String getPassword()
Password, which will be applied to the generated PDF document as user password, required for opening. If NULL or empty, no password will be applied to the document. Otherwise, document will be encrypted with RC4 (key length of 128 bit).
public final void setCompliance(int value)
Specifies the PDF standards compliance level for output documents. Default is PdfCompliance.Pdf15.
value
- public final void setPassword(String value)
Password, which will be applied to the generated PDF document as user password, required for opening. If NULL or empty, no password will be applied to the document. Otherwise, document will be encrypted with RC4 (key length of 128 bit).
value
- Copyright © 2020. All rights reserved.