Click or drag to resize

ConvertToXodAsync Method (PDFDoc)

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
)

Parameters

doc
Type: pdftron.PDFPDFDoc
The source PDFDoc instance.

Return Value

Type: IAsyncOperationIFilter
When 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