ConvertToXod Method (String) |
Generate a stream that incrementally converts the input file to XOD format.
Namespace:
pdftron.PDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static IFilter ToXod(
string filePath
)
Public Shared Function ToXod (
filePath As String
) As IFilter
public:
static IFilter^ ToXod(
[InAttribute] String^ filePath
)
pdftron.PDF.Convert.ToXod = function(filePath);
Parameters
- filePath
- Type: SystemString
The full path of the file to convert.
Return Value
Type:
IFilterWhen this operation completes, an
IFilter instance is returned that contains the converted data.
Remarks
This method is only retained for compatibility. It is recommended to use the asynchronous version of
this method: ToXodAsync.
See Also