Package com.itextpdf.layout.element
Class Table.RowRange
java.lang.Object
com.itextpdf.layout.element.Table.RowRange
- Enclosing class:
- Table
A simple object which holds the row numbers of a section of a table.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
Gets the finishing row number of the table sectionint
Gets the starting row number of the table section
-
Constructor Details
-
RowRange
public RowRange(int startRow, int finishRow) Creates aTable.RowRange
- Parameters:
-
startRow
- the start number of the row group, inclusive -
finishRow
- the finish number of the row group, inclusive
-
-
Method Details
-
getStartRow
public int getStartRow()Gets the starting row number of the table section- Returns:
- the start number of the row group, inclusive
-
getFinishRow
public int getFinishRow()Gets the finishing row number of the table section- Returns:
- the finish number of the row group, inclusive
-