FPDFPageObj_GetDashPhase function

  1. @Native<FPDF_BOOL Function(FPDF_PAGEOBJECT, Pointer<Float>)>(FPDF_PAGEOBJECT, ffi.Pointer<ffi.Float>)>()
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

@ffi.Native<FPDF_BOOL Function(FPDF_PAGEOBJECT, ffi.Pointer<ffi.Float>)>()
external int FPDFPageObj_GetDashPhase(
  FPDF_PAGEOBJECT page_object,
  ffi.Pointer<ffi.Float> phase,
);