public class VerticalPageBreak
Example:
//Add a pagebreak at G5
excel.getWorksheets().get(0).getHorizontalPageBreaks().add("G5");
excel.getWorksheets().get(0).getVerticalPageBreaks().add("G5");
Property Getters/Setters Summary | ||
---|---|---|
int | getColumn() | |
Gets the column index of the vertical page break.
|
||
int | getEndRow() | |
Gets the end row index of the vertical page break.
|
||
int | getStartRow() | |
Gets the start row index of the vertical page break.
|