FPDFPageObj_GetDashPhase method

int FPDFPageObj_GetDashPhase(
  1. FPDF_PAGEOBJECT page_object,
  2. Pointer<Float> phase
)

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

page_object - handle to a page object. phase - pointer where the dashing phase will be stored.

Returns TRUE on success.

Implementation

int FPDFPageObj_GetDashPhase(
  FPDF_PAGEOBJECT page_object,
  ffi.Pointer<ffi.Float> phase,
) {
  return _FPDFPageObj_GetDashPhase(page_object, phase);
}