PDF SDK Documentation

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

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