FPDFPageObj_SetDashPhase function

  1. @Native<FPDF_BOOL Function(FPDF_PAGEOBJECT, Float)>(FPDF_PAGEOBJECT, ffi.Float)>()
int FPDFPageObj_SetDashPhase(
  1. FPDF_PAGEOBJECT page_object,
  2. double phase
)

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

page_object - handle to a page object. phase - line dash phase.

Returns TRUE on success.

Implementation

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