PDF SDK Documentation

Comprehensive Guide for Developers: Features, Integration, and API Reference

Loading...
Searching...
No Matches
pdf2xlsx.h
Go to the documentation of this file.
1// Copyright (c) 2009-2025 Avanquest Software. All rights reserved.
2
3#ifndef PDFSDK_CONVERT_PDF2XLSX_H_INCLUDED_
4#define PDFSDK_CONVERT_PDF2XLSX_H_INCLUDED_
5
11#include <pdfsdk/core.h>
12
13#ifdef PDF_PDF2XLSX_EXPORTS
14#define PDF_PDF2XLSX_API PDFSDK_EXPORT_
15#else
16#define PDF_PDF2XLSX_API PDFSDK_IMPORT_
17#endif
18
29
43
44#ifdef __cplusplus
45extern "C" {
46#endif
47
61PDF_PDF2XLSX_API PDErrCode PDFSDK_CALLCONV PDFConvertToXlsx(PDDoc source,
62 const PDPageRange* pageRange,
63 const PDProgressMonitor* progress,
64 void* progressData,
65 const PDFConvertToXlsxParams* params);
66
67#ifdef __cplusplus
68}
69#endif
70
71#endif // PDFSDK_CONVERT_PDF2XLSX_H_INCLUDED_
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 document.h:37
Definition progress_monitor.h:15