FPDFDOC_InitFormFillEnvironment method
FPDF_FORMHANDLE
FPDFDOC_InitFormFillEnvironment(
- FPDF_DOCUMENT document,
- Pointer<
FPDF_FORMFILLINFO> formInfo
Function: FPDFDOC_InitFormFillEnvironment Initialize form fill environment. Parameters: document - Handle to document from FPDF_LoadDocument(). formInfo - Pointer to a FPDF_FORMFILLINFO structure. Return Value: Handle to the form fill module, or NULL on failure. Comments: This function should be called before any form fill operation. The FPDF_FORMFILLINFO passed in via |formInfo| must remain valid until the returned FPDF_FORMHANDLE is closed.
Implementation
FPDF_FORMHANDLE FPDFDOC_InitFormFillEnvironment(
FPDF_DOCUMENT document,
ffi.Pointer<FPDF_FORMFILLINFO> formInfo,
) {
return _FPDFDOC_InitFormFillEnvironment(document, formInfo);
}