Package com.itextpdf.text.pdf
Interface PdfPTableEventSplit
-
- All Superinterfaces:
PdfPTableEvent
- All Known Subinterfaces:
PdfPTableEventAfterSplit
- All Known Implementing Classes:
PdfPTableEventForwarder
public interface PdfPTableEventSplit extends PdfPTableEvent
Signals that a table will continue in the next page.- Since:
- 5.0.6
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
splitTable(PdfPTable table)
This method is called to indicate that table is being split.-
Methods inherited from interface com.itextpdf.text.pdf.PdfPTableEvent
tableLayout
-
-
-
-
Method Detail
-
splitTable
void splitTable(PdfPTable table)
This method is called to indicate that table is being split. It's called before thetableLayout
method and before the table is drawn.- Parameters:
table
- thePdfPTable
in use
-
-