Convert.FromXps Method (PDFDoc,Byte[]) |
Converts the specified XPS document contained in memory to PDF and append converted pages to the
specified PDF document.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntaxpublic static void FromXps(
PDFDoc doc,
byte[] byteArray
)
Public Shared Sub FromXps (
doc As PDFDoc,
byteArray As Byte()
)
public:
static void FromXps(
[InAttribute] PDFDoc^ doc,
[InAttribute] array<unsigned char>^ byteArray
)
pdftron.PDF.Convert.FromXps = function(doc, byteArray);
Parameters
- doc
- Type: pdftron.PDF.PDFDoc
The PDFDoc to append to. - byteArray
- Type:System.Byte[]
The byte array containing the XPS document.
See Also