FPDFAnnot_SetFlags method

int FPDFAnnot_SetFlags(
  1. FPDF_ANNOTATION annot,
  2. int flags
)

Experimental API. Set the |annot|'s flags to be of the value |flags|.

annot - handle to an annotation. flags - the flag values to be set.

Returns true if successful.

Implementation

int FPDFAnnot_SetFlags(FPDF_ANNOTATION annot, int flags) {
  return _FPDFAnnot_SetFlags(annot, flags);
}