Pen Style psDot does'nt work in WPDF

  • I have an Application where I have to Draw Grid Lines(small dash lines) using wPDF 1.34 from Delphi. So I set the Pen Style to psDot to draw the grid lines. But the Grid Lines do'nt appear in the PDF doc. The details when I draw the Grid Lines are

      Brush Color is white
      Brush style is solid
      font color is navy
      font name is arial
      font size is 8
      font style is bold
      pen color is teal
      pen mode is pmcopy
      pen style is psdot

    I don't know whether this could be a faulty Brush/Font/Pen settings or a version problem in wPDF.
    Can anyone help me in this regard. Thanks in advance.

  • (Using wPDF 2 Standard)
    I found changing pen-style was ineffective until I had used LineTo function. i.e. setting psDot then using rect functions used previous pen-style, but calling lineto (even for a single pixel line) seemed to force it to recognise the change for subsequent rounded rectangles etc on the canvas.
    Hope this helps