FPDFPageObj_GetLineCap function

  1. @Native<FPDF_BOOL Function(FPDF_PAGEOBJECT)>(FPDF_PAGEOBJECT)>()
int FPDFPageObj_GetLineCap(
  1. FPDF_PAGEOBJECT page_object
)

Get the line cap of |page_object|.

page_object - handle to a page object.

Returns the line cap, or -1 on failure. Line cap can be one of following: FPDF_LINECAP_BUTT, FPDF_LINECAP_ROUND, FPDF_LINECAP_PROJECTING_SQUARE

Implementation

@ffi.Native<ffi.Int Function(FPDF_PAGEOBJECT)>()
external int FPDFPageObj_GetLineCap(FPDF_PAGEOBJECT page_object);