FPDFPageObj_SetDashPhase method

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

int FPDFPageObj_SetDashPhase(FPDF_PAGEOBJECT page_object, double phase) {
  return _FPDFPageObj_SetDashPhase(page_object, phase);
}