FPDF_StructElement_Attr_GetCount function

  1. @Native<Int Function(FPDF_STRUCTELEMENT_ATTR)>(FPDF_STRUCTELEMENT_ATTR)>()
int FPDF_StructElement_Attr_GetCount(
  1. FPDF_STRUCTELEMENT_ATTR struct_attribute
)

Experimental API. Function: FPDF_StructElement_Attr_GetCount Count the number of attributes in a structure element attribute map. Parameters: struct_attribute - Handle to the struct element attribute. Return value: The number of attributes, or -1 on error.

Implementation

@ffi.Native<ffi.Int Function(FPDF_STRUCTELEMENT_ATTR)>()
external int FPDF_StructElement_Attr_GetCount(
  FPDF_STRUCTELEMENT_ATTR struct_attribute,
);