VerticalPageBreak
Contents
[
Hide
]VerticalPageBreak class
Encapsulates the object that represents a vertical page break.
class VerticalPageBreak;
Example
const { Workbook } = AsposeCells;
var excel = new Workbook();
//Add a pagebreak at G5
excel.worksheets.get(0).horizontalPageBreaks.add("G5");
excel.worksheets.get(0).verticalPageBreaks.add("G5");
Properties
Property | Type | Description |
---|---|---|
startRow | number | Readonly. Gets the start row index of the vertical page break. |
endRow | number | Readonly. Gets the end row index of the vertical page break. |
column | number | Readonly. Gets the column index of the vertical page break. |
startRow
Readonly. Gets the start row index of the vertical page break.
startRow : number;
endRow
Readonly. Gets the end row index of the vertical page break.
endRow : number;
column
Readonly. Gets the column index of the vertical page break.
column : number;