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