Method ImportAnXFDF
Namespace TallComponents.PDF.JavaScript.Scripting
Class Doc
Override this method to implement custom importAnXFDF behavior.
By default, this method will try to construct an XfdfFormData 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.ImportAnXFDF(path) first. If this returns null, one should allow the user to select a file.
Syntax
protected internal
XfdfFormData
ImportAnXFDF(
String
path
)
Returns
XfdfFormData
An XfdfFormData instance, or null.
Parameters
String
path
optional, relative, device-independent path to the XFDF file.
The default is null.