Converts the specified EMF file to PDF and append converted pages to the specified PDF document. The
EMF will be fitted to the page.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static void FromEmf(
PDFDoc doc,
string filePath
)
Public Shared Sub FromEmf (
doc As PDFDoc,
filePath As String
)
public:
static void FromEmf(
[InAttribute] PDFDoc^ doc,
[InAttribute] String^ filePath
)
pdftron.PDF.Convert.FromEmf = function(doc, filePath);
Parameters
- doc
- Type: pdftron.PDFPDFDoc
The PDFDoc to append to. - filePath
- Type: SystemString
The full path to the EMF document to convert.
Remarks
This method is only retained for compatibility. It is recommended to use the asynchronous version of
this method: FromEmfAsync.
See Also