Example usage for com.itextpdf.text.pdf PdfPTable beginWritingRows

List of usage examples for com.itextpdf.text.pdf PdfPTable beginWritingRows

Introduction

In this page you can find the example usage for com.itextpdf.text.pdf PdfPTable beginWritingRows.

Prototype

public static PdfContentByte[] beginWritingRows(final PdfContentByte canvas) 

Source Link

Document

Gets and initializes the 4 layers where the table is written to.

Usage

From source file:com.chaschev.itext.TableBuilder.java

License:Apache License

public static PdfContentByte[] beginWritingRows(PdfContentByte canvas) {
    return PdfPTable.beginWritingRows(canvas);
}