SetLineType : set line type ("dashed" ,"dotted") Usage: pdf.SetLineType("dashed") pdf.Line(50, 200, 550, 200) pdf.SetLineType("dotted") pdf.Line(50, 400, 550, 400)
(linetype string)
| 196 | // pdf.SetLineType("dotted") |
| 197 | // pdf.Line(50, 400, 550, 400) |
| 198 | func (gp *GoPdf) SetLineType(linetype string) { |
| 199 | gp.getContent().AppendStreamSetLineType(linetype) |
| 200 | } |
| 201 | |
| 202 | // SetCustomLineType : set custom line type |
| 203 | // |
nothing calls this directly
no test coverage detected