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
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
53PDF_PDF2DOCX_API PDErrCode PDFSDK_CALLCONV PDFConvertToDocx(PDDoc source,
54 const PDPageRange* pageRange,
55 const PDProgressMonitor* progress,
56 void* progressData,
57 const PDFConvertToDocxParams* params);
58
59#ifdef __cplusplus
60}
61#endif
62
63#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 ignoreHeadersAndFooters
Definition pdf2docx.h:29
bool isWord2003
Definition pdf2docx.h:26
const wchar_t * outputFile
Definition pdf2docx.h:24
bool tableRecognize
Definition pdf2docx.h:28
Specifies a structure to define a set of pages.
Definition document.h:43
Definition progress_monitor.h:15