FDFDocCreateFromXFDFAsync Method (String) |
Creates an FDF document from an existing XFDF file.
Namespace:
pdftron.FDF
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static IAsyncOperation<FDFDoc> CreateFromXFDFAsync(
string filePath
)
Public Shared Function CreateFromXFDFAsync (
filePath As String
) As IAsyncOperation(Of FDFDoc)
public:
static IAsyncOperation<FDFDoc^>^ CreateFromXFDFAsync(
[InAttribute] String^ filePath
)
pdftron.FDF.FDFDoc.CreateFromXFDFAsync = function(filePath);
Parameters
- filePath
- Type: SystemString
The full path to the source XFDF file.
Return Value
Type:
IAsyncOperationFDFDocWhen this method completes, it returns a newly created FDFDoc.
See Also