FPDFAnnot_SetURI method

int FPDFAnnot_SetURI(
  1. FPDF_ANNOTATION annot,
  2. Pointer<Char> uri
)

Experimental API. Add a URI action to |annot|, overwriting the existing action, if any.

annot - handle to a link annotation. uri - the URI to be set, encoded in 7-bit ASCII.

Returns true if successful.

Implementation

int FPDFAnnot_SetURI(FPDF_ANNOTATION annot, ffi.Pointer<ffi.Char> uri) {
  return _FPDFAnnot_SetURI(annot, uri);
}