FPDFAnnot_GetFormFieldFlags method

int FPDFAnnot_GetFormFieldFlags(
  1. FPDF_FORMHANDLE handle,
  2. FPDF_ANNOTATION annot
)

Experimental API. Get the annotation flags of |annot|.

hHandle - handle to the form fill module, returned by FPDFDOC_InitFormFillEnvironment(). annot - handle to an interactive form annotation.

Returns the annotation flags specific to interactive forms.

Implementation

int FPDFAnnot_GetFormFieldFlags(
  FPDF_FORMHANDLE handle,
  FPDF_ANNOTATION annot,
) {
  return _FPDFAnnot_GetFormFieldFlags(handle, annot);
}