FPDF_StructElement_GetAttributeCount method

int FPDF_StructElement_GetAttributeCount(
  1. FPDF_STRUCTELEMENT struct_element
)

Function: FPDF_StructElement_GetAttributeCount Count the number of attributes for the structure element. Parameters: struct_element - Handle to the struct element. Return value: The number of attributes, or -1 on error.

Implementation

int FPDF_StructElement_GetAttributeCount(FPDF_STRUCTELEMENT struct_element) {
  return _FPDF_StructElement_GetAttributeCount(struct_element);
}