FPDFPageObj_GetDashArray function

  1. @Native<FPDF_BOOL Function(FPDF_PAGEOBJECT, Pointer<Float>, Size)>(FPDF_PAGEOBJECT, ffi.Pointer<ffi.Float>, ffi.Size)>()
int FPDFPageObj_GetDashArray(
  1. FPDF_PAGEOBJECT page_object,
  2. Pointer<Float> dash_array,
  3. int dash_count
)

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

page_object - handle to a page object. dash_array - pointer where the dashing array will be stored. dash_count - number of elements in |dash_array|.

Returns TRUE on success.

Implementation

@ffi.Native<
  FPDF_BOOL Function(FPDF_PAGEOBJECT, ffi.Pointer<ffi.Float>, ffi.Size)
>()
external int FPDFPageObj_GetDashArray(
  FPDF_PAGEOBJECT page_object,
  ffi.Pointer<ffi.Float> dash_array,
  int dash_count,
);