FPDFPageObj_SetStrokeWidth method

int FPDFPageObj_SetStrokeWidth(
  1. FPDF_PAGEOBJECT page_object,
  2. double width
)

Set the stroke width of a page object.

path - the handle to the page object. width - the width of the stroke.

Returns TRUE on success

Implementation

int FPDFPageObj_SetStrokeWidth(FPDF_PAGEOBJECT page_object, double width) {
  return _FPDFPageObj_SetStrokeWidth(page_object, width);
}