FPDF_LoadXFA method

int FPDF_LoadXFA(
  1. FPDF_DOCUMENT document
)

Function: FPDF_LoadXFA If the document consists of XFA fields, call this method to attempt to load XFA fields. Parameters: document - Handle to document from FPDF_LoadDocument(). Return Value: TRUE upon success, otherwise FALSE. If XFA support is not built into PDFium, performs no action and always returns FALSE.

Implementation

int FPDF_LoadXFA(FPDF_DOCUMENT document) {
  return _FPDF_LoadXFA(document);
}