com.lowagie.text.pdf.draw
public interface: DrawInterface [javadoc |
source]
All Known Implementing Classes:
LineSeparator, DottedLineSeparator, VerticalPositionMark
Interface for an Element that allows you to draw something at the current
vertical position. Trivial implementations are LineSeparator and VerticalPositionMark.
It is also used to define what has to be drawn by a separator chunk.
| Method from com.lowagie.text.pdf.draw.DrawInterface Summary: |
|---|
|
draw |
| Method from com.lowagie.text.pdf.draw.DrawInterface Detail: |
public 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). |