Converts a Word Processing document into a PDF file.
// Exports a Document variable to PDF
d is Document = "text.docx"
IF DocToPDF(d, fExeDir() + [fSep] + "MyDoc.pdf") THEN
Info("Document converted to PDF")
END
// Exports the content of a Word Processing control to PDF
// Click code of "PDF export" button
DocToPDF(WP_MyDoc, fExeDir() + [fSep] + "wp.pdf")
Syntax
<Result> = DocToPDF(<Document to convert> , <Name of PDF file>)
<Result>: Boolean
- True if the PDF file was created.
- False otherwise. To get more details on the error, use ErrorInfo.
<Document to convert>: Document variable or character string
Document to use. This document can correspond to: - a variable of type Document.
a Word Processing control.
<Name of PDF file>: Character string
Name and full path of PDF file to create. The file is replaced with the new file if it already exists.
Remarks
- OpenType (.otf) fonts are not supported by the PDF generation.
- Watermarks are not supported by the PDF generation.
Component: wd280wdpdf.dll