FPDFPath_GetDrawMode method
Get the drawing mode of a path.
path - the handle to the path object. fillmode - the filling mode of the path: one of the FPDF_FILLMODE_* flags. stroke - a boolean specifying if the path is stroked or not.
Returns TRUE on success
Implementation
int FPDFPath_GetDrawMode(
FPDF_PAGEOBJECT path,
ffi.Pointer<ffi.Int> fillmode,
ffi.Pointer<FPDF_BOOL> stroke,
) {
return _FPDFPath_GetDrawMode(path, fillmode, stroke);
}