ConvertFromXpsAsync Method (PDFDoc, IStorageFile) |
Converts the specified XPS 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 IAsyncAction FromXpsAsync(
PDFDoc doc,
IStorageFile file
)
Public Shared Function FromXpsAsync (
doc As PDFDoc,
file As IStorageFile
) As IAsyncAction
public:
static IAsyncAction^ FromXpsAsync(
[InAttribute] PDFDoc^ doc,
[InAttribute] IStorageFile^ file
)
pdftron.PDF.Convert.FromXpsAsync = function(doc, file);
Parameters
- doc
- Type: pdftron.PDFPDFDoc
The PDFDoc to append to. - file
- Type: IStorageFile
The StorageFile of the XPS document to convert.
Return Value
Type:
IAsyncActionAn object used for managing the asynchronous operation.
See Also