Name
page:SetLineJoin -- set line join style
Synopsis
status = page:SetLineJoin(linejoin)
Function
page:SetLineJoin() Sets the line join style in the page.

The linejoin parameter must be one of the following constants:

#HPDF_MITER_JOIN
Use miter join (a sharp angled corner). This is the default join mode.

#HPDF_ROUND_JOIN
Join lines by drawing their ends as circles. This gives a thick pen impression.

#HPDF_BEVEL_JOIN
Join lines by cutting off the line ends at the half of the line width.

Inputs
linejoin
the desired line join style (see above)
Results
status
status code

Show TOC