FPDFPageObjMark_RemoveParam method

int FPDFPageObjMark_RemoveParam(
  1. FPDF_PAGEOBJECT page_object,
  2. FPDF_PAGEOBJECTMARK mark,
  3. FPDF_BYTESTRING key
)

Experimental API. Removes a property from a content mark by key.

page_object - handle to the page object with the mark. mark - handle to a content mark. key - string key of the property.

Returns TRUE if the operation succeeded, FALSE otherwise.

Implementation

int FPDFPageObjMark_RemoveParam(
  FPDF_PAGEOBJECT page_object,
  FPDF_PAGEOBJECTMARK mark,
  FPDF_BYTESTRING key,
) {
  return _FPDFPageObjMark_RemoveParam(page_object, mark, key);
}