VerticalPageBreak

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

PropertyTypeDescription
startRownumberReadonly. Gets the start row index of the vertical page break.
endRownumberReadonly. Gets the end row index of the vertical page break.
columnnumberReadonly. Gets the column index of the vertical page break.

Methods

MethodDescription
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;