FPDFAnnot_GetAttachmentPoints method
int
FPDFAnnot_GetAttachmentPoints(
- FPDF_ANNOTATION annot,
- int quad_index,
- Pointer<
FS_QUADPOINTSF> quad_points
Experimental API. Get the attachment points (i.e. quadpoints) of an annotation.
annot - handle to an annotation. quad_index - index of the set of quadpoints. quad_points - receives the quadpoints; must not be NULL.
Returns true if successful.
Implementation
int FPDFAnnot_GetAttachmentPoints(
FPDF_ANNOTATION annot,
int quad_index,
ffi.Pointer<FS_QUADPOINTSF> quad_points,
) {
return _FPDFAnnot_GetAttachmentPoints(annot, quad_index, quad_points);
}