FPDFPageObj_GetDashCount method

int FPDFPageObj_GetDashCount(
  1. FPDF_PAGEOBJECT page_object
)

Experimental API. Get the line dash array of |page_object|.

page_object - handle to a page object.

Returns the line dash array size or -1 on failure.

Implementation

int FPDFPageObj_GetDashCount(FPDF_PAGEOBJECT page_object) {
  return _FPDFPageObj_GetDashCount(page_object);
}