FPDF_StructElement_CountChildren function

  1. @Native<Int Function(FPDF_STRUCTELEMENT)>(FPDF_STRUCTELEMENT)>()
int FPDF_StructElement_CountChildren(
  1. FPDF_STRUCTELEMENT struct_element
)

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

Implementation

@ffi.Native<ffi.Int Function(FPDF_STRUCTELEMENT)>()
external int FPDF_StructElement_CountChildren(
  FPDF_STRUCTELEMENT struct_element,
);