Method ImportAnFDF
Namespace TallComponents.PDF.JavaScript.Scripting
Class Doc
Override this method to implement custom importAnFDF behavior.
By default, this method will try to construct an FdfFormData instance from the given path. If this fails, it will return null.
In order to provide an implementation that adheres to the PDF specificaton, one should override this method and invoke base.ImportAnFDF(path) first. If this returns null, one should allow the user to select a file.
Syntax
protected internal FdfFormData ImportAnFDF(String path)
Returns
FdfFormData
An FdfFormData instance, or null.
Parameters
String
path
optional, relative, device-independent path to the FDF file.
The default is null.