Package | Description |
---|---|
com.qoppa.office |
This package contains the main classes to load and convert MS Word documents.
|
Modifier and Type | Class and Description |
---|---|
static class |
ExcelConvertOptions.MaxPageCountReached
Exception thrown when the maximum number of pages has been reached (as set by the option) during a conversion.
|
Modifier and Type | Method and Description |
---|---|
int |
ExcelDocument.getPageCount()
Return the number of pages in the converted document.
|
void |
ExcelDocument.saveAsPDF(OutputStream pdfFileStream)
Converts the Excel document into a PDF document then
saves the created PDF Document to a file using an Output Stream
|
void |
PowerPointDocument.saveAsPDF(OutputStream pdfOutStream)
Converts the PowerPoint document into a PDF document then
saves the created PDF Document to a file using an Output Stream
|
void |
WordDocument.saveAsPDF(OutputStream pdfFileStream)
Converts the Word document into a PDF document then
saves the created PDF Document to a file using an Output Stream
|
void |
ExcelDocument.saveAsPDF(OutputStream pdfFileStream,
PDFSecuritySettings securitySettings)
Converts the Excel document into a PDF document, applies
the security settings and then saves the created PDF Document to
a file using an Output Stream
|
void |
WordDocument.saveAsPDF(OutputStream pdfFileStream,
PDFSecuritySettings securitySettings)
Converts the Word document into a PDF document, applies
the security settings and then saves the created PDF Document to
a file using an Output Stream
|
void |
ExcelDocument.saveAsPDF(String pdfFile)
Converts the Excel document into a PDF document then
saves the created PDF Document to a file using a String filename
|
void |
PowerPointDocument.saveAsPDF(String pdfFile)
Converts the PowerPoint document into a PDF document then
saves the created PDF Document to a file using a String filename
|
void |
WordDocument.saveAsPDF(String pdfFile)
Converts the Word document into a PDF document then
saves the created PDF Document to a file using a String filename
|
void |
ExcelDocument.saveAsPDF(String pdfFile,
PDFSecuritySettings securitySettings)
Converts the Excel document into a PDF document, applies
the security settings and then saves the created PDF Document to
a file using a String filename
|
void |
WordDocument.saveAsPDF(String pdfFile,
PDFSecuritySettings securitySettings)
Converts the Word document into a PDF document, applies
the security settings and then saves the created PDF Document to
a file using a String filename
|