3#ifndef PDFSDK_CONVERT_PDF2XLSX_H_INCLUDED_
4#define PDFSDK_CONVERT_PDF2XLSX_H_INCLUDED_
11#include <pdfsdk/core.h>
13#ifdef PDF_PDF2XLSX_EXPORTS
14#define PDF_PDF2XLSX_API PDFSDK_EXPORT_
16#define PDF_PDF2XLSX_API PDFSDK_IMPORT_
int32_t PDErrCode
Definition errors.h:44
PDFConvertToXlsxType
Defines how the content is organized in the resulting Excel file.
Definition pdf2xlsx.h:24
@ kPDFConvertToXlsxPagePerSheet
Definition pdf2xlsx.h:26
@ kPDFConvertToXlsxTablePerSheet
Definition pdf2xlsx.h:25
@ kPDFConvertToXlsxDocumentPerSheet
Definition pdf2xlsx.h:27
PDFSDK_IMPORT_ PDErrCode PDFSDK_CALLCONV PDFConvertToXlsx(PDDoc source, const PDPageRange *pageRange, const PDProgressMonitor *progress, void *progressData, const PDFConvertToXlsxParams *params)
A function to covert a PDF file (or a part of it) into a MS Excel Document format (....
Contains conversion-related parameters such as the output file, the Excel sheet makeup,...
Definition pdf2xlsx.h:35
bool keepTablesOnly
Definition pdf2xlsx.h:39
const wchar_t * outputFile
Definition pdf2xlsx.h:36
PDFConvertToXlsxType convertType
Definition pdf2xlsx.h:38
Definition progress_monitor.h:15