public interface DrawInterface 
      | Modifier and Type | Method and Description | 
|---|---|
void |  
           draw(PdfContentByte canvas, float llx, float lly, float urx, float ury, float y) 
            
              Implement this method if you want to draw something at the current Y position (for instance a line). 
               |  
          
void draw(PdfContentByte canvas, float llx, float lly, float urx, float ury, float y)
canvas - the canvas on which you can draw 
           llx - the x coordinate of the left page margin 
           lly - the y coordinate of the bottom page margin 
           urx - the x coordinate of the right page margin 
           ury - the y coordinate of the top page margin 
           y - the current y position on the page 
           Copyright © 1998–2019. All rights reserved.