use of com.lowagie.text.Graphic in project vcell by virtualcell.
the class PDFWriter method writeHorizontalLine.
/**
* PDF implementation.
*/
protected void writeHorizontalLine() throws DocumentException {
document.add(new Paragraph("\n"));
Graphic graphic = new Graphic();
graphic.setHorizontalLine(1, 75);
document.add(graphic);
document.add(new Paragraph("\n"));
}