 | PdfiumFPDFInterForm_ExportToFDF Method |
Export fields into Forms Data Format (FDF) document
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static IntPtr FPDFInterForm_ExportToFDF(
IntPtr interForm,
string pdf_path,
bool bSimpleFileSpec = false
)
Public Shared Function FPDFInterForm_ExportToFDF (
interForm As IntPtr,
pdf_path As String,
Optional bSimpleFileSpec As Boolean = false
) As IntPtr
public:
static IntPtr FPDFInterForm_ExportToFDF(
IntPtr interForm,
String^ pdf_path,
bool bSimpleFileSpec = false
)
static member FPDFInterForm_ExportToFDF :
interForm : IntPtr *
pdf_path : string *
?bSimpleFileSpec : bool
(* Defaults:
let _bSimpleFileSpec = defaultArg bSimpleFileSpec false
*)
-> IntPtr
public static IntPtr FPDFInterForm_ExportToFDF(
IntPtr interForm,
String pdf_path,
boolean bSimpleFileSpec = false
)
Patagames.Pdf.Pdfium.FPDFInterForm_ExportToFDF = function(interForm, pdf_path, bSimpleFileSpec);
Parameters
- interForm IntPtr
- Handle to interactive forms. Returned by FORM_GetInterForm(IntPtr) function.
- pdf_path String
- Path to the source file: the PDF document file that this FDF file was exported from.
- bSimpleFileSpec Boolean (Optional)
- True for simple file specification, false otherwise/
Return Value
IntPtrNew FDF document
Remarks
A PDF file can refer to the contents of another file by using a file specification (PDF 1.1), which can take either of two forms:
-
A simple file specification gives just the name of the target file in a standard format, independent of the naming conventions of any particular file system. It
can take the form of either a string or a dictionary
-
A full file specification includes information related to one or more specific file systems. It can only be represented as a dictionary.
See Also