ConvertToXodAsync Method (PDFDoc, XODOutputOptions) |
Converts the input PDFDoc to XOD format.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static IAsyncOperation<IFilter> ToXodAsync(
PDFDoc doc,
XODOutputOptions options
)
Public Shared Function ToXodAsync (
doc As PDFDoc,
options As XODOutputOptions
) As IAsyncOperation(Of IFilter)
public:
static IAsyncOperation<IFilter^>^ ToXodAsync(
[InAttribute] PDFDoc^ doc,
[InAttribute] XODOutputOptions^ options
)
pdftron.PDF.Convert.ToXodAsync = function(doc, options);
Parameters
- doc
- Type: pdftron.PDFPDFDoc
The source PDFDoc instance. - options
- Type: pdftron.PDFXODOutputOptions
Conversion options to use.
Return Value
Type:
IAsyncOperationIFilterWhen this operation completes, an
IFilter instance is returned that contains the converted data.
Remarks
Use this method to convert a file pointed by any Windows Runtime stream handles (i.e. IInputStream,
IStorageFile, etc.). Wrap the Windows Runtime stream with PDFNet's filter classes, then pass it to this
method.
Examples PDFDoc doc = ...
using (var result = await Convert.ToXodAsync(doc)) {
var reader = new FilterReader(result);
reader.Read(...)
...
}
See Also