VerticalPageBreak
Contents
[
Hide
]VerticalPageBreak class
Encapsulates the object that represents a vertical page break.
class VerticalPageBreak;
Example
const { Workbook } = require("aspose.cells.node");
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. |
Methods
Method | Description |
---|---|
getStartRow() | @deprecated. Please use the ‘startRow’ property instead. Gets the start row index of the vertical page break. |
getEndRow() | @deprecated. Please use the ’endRow’ property instead. Gets the end row index of the vertical page break. |
getColumn() | @deprecated. Please use the ‘column’ property instead. Gets the column index of the vertical page break. |
isNull() | Checks whether the implementation object is null. |
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;
getStartRow()
@deprecated. Please use the ‘startRow’ property instead. Gets the start row index of the vertical page break.
getStartRow() : number;
getEndRow()
@deprecated. Please use the ’endRow’ property instead. Gets the end row index of the vertical page break.
getEndRow() : number;
getColumn()
@deprecated. Please use the ‘column’ property instead. Gets the column index of the vertical page break.
getColumn() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;