PdfFormWidget
ImportDataFDF Method
|
Import form data from FDF file.
Namespace:
Spire.Pdf.Widget
Assembly:
Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
public PdfFieldWidgetImportError[] ImportDataFDF(
Stream stream,
bool continueImportOnError
)
Public Function ImportDataFDF (
stream As Stream,
continueImportOnError As Boolean
) As PdfFieldWidgetImportError()
public:
array<PdfFieldWidgetImportError^>^ ImportDataFDF(
Stream^ stream,
bool continueImportOnError
)
member ImportDataFDF :
stream : Stream *
continueImportOnError : bool -> PdfFieldWidgetImportError[]
Parameters
-
stream
-
Type:
System.IO
Stream
The FDF file stream
-
continueImportOnError
-
Type:
System
Boolean
False if the import should stop on the first field that generates an error, or true if the import should ignore the error and continue with the next field.
Return Value
Type:
PdfFieldWidgetImportError
Document form fields filled with data which are imported from FDF.
See Also