PDF SDK Documentation

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

Loading...
Searching...
No Matches
pdf2docx.h
Go to the documentation of this file.
1// Copyright (c) 2009-2025 Avanquest Software. All rights reserved.
2
3#ifndef PDFSDK_CONVERT_PDF2DOCX_H_INCLUDED_
4#define PDFSDK_CONVERT_PDF2DOCX_H_INCLUDED_
5
11#include <pdfsdk/core.h>
12
13#ifdef PDF_PDF2DOCX_EXPORTS
14#define PDF_PDF2DOCX_API PDFSDK_EXPORT_
15#else
16#define PDF_PDF2DOCX_API PDFSDK_IMPORT_
17#endif
18
24 const wchar_t* outputFile;
28};
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
47PDF_PDF2DOCX_API PDErrCode PDFSDK_CALLCONV PDFConvertToDocx(PDDoc source,
48 const PDPageRange* pageRange,
49 const PDProgressMonitor* progress,
50 void* progressData,
51 const PDFConvertToDocxParams* params);
52
53#ifdef __cplusplus
54}
55#endif
56
57#endif // PDFSDK_CONVERT_PDF2DOCX_H_INCLUDED_
int32_t PDErrCode
Definition errors.h:44
PDErrCode PDFConvertToDocx(PDDoc source, const PDPageRange *pageRange, const PDProgressMonitor *progress, void *progressData, const PDFConvertToDocxParams *params)
A function to covert a PDF file (or a part of it) into a MS Word Document format (....
Contains conversion-related parameters such as the output directory and file name,...
Definition pdf2docx.h:23
bool isWord2003
Definition pdf2docx.h:26
const wchar_t * outputFile
Definition pdf2docx.h:24
bool tableRecognize
Definition pdf2docx.h:27
Definition document.h:37
Definition progress_monitor.h:15