exportAsFDF

The exportAsFDF method exports the form fiels as an FDF file.

 

Syntax

exportAsFDF(System.Booelan bAllFields, System.Boolean bNoPassword, System.Boolean aFields, System.Boolean bFlags, System.String cPath, System.Boolean bAnnotations);

 

Return Value

Returns None.

 

Parameters

bAllFields

[optional] Whether all the fields are exported including the empty fields.  Default value = false.

bNoPassword

[optional] Whether the fields with password flag should be excluded.  Default value = true.

aFields

[optional] Field name or list of field names.

bFlags

[optional] Whether field flags should be exported.  Default value = false.

cPath

[optional] Path to save the FDF file.  If it is omitted, a dialog box will appear for the user.

bAnnotations

[optional] Whether the annotations should be included.  Default value = false.

 

Remarks

The developer needs to turn off the automatic calculation changing the calculate property to false;

 

Member of doc.

 

Example

// Export the all fields.
this.exportAsFDF(true, true, null);
 
// Export only the "country" fields
this.exportAsFDF(false, true, "country");