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.getWorksheets().get(0).getHorizontalPageBreaks().add("G5");
excel.getWorksheets().get(0).getVerticalPageBreaks().add("G5");

Methods

MethodDescription
getStartRow()Gets the start row index of the vertical page break.
getEndRow()Gets the end row index of the vertical page break.
getColumn()Gets the column index of the vertical page break.
isNull()Checks whether the implementation object is null.

getStartRow()

Gets the start row index of the vertical page break.

getStartRow() : number;

getEndRow()

Gets the end row index of the vertical page break.

getEndRow() : number;

getColumn()

Gets the column index of the vertical page break.

getColumn() : number;

isNull()

Checks whether the implementation object is null.

isNull() : boolean;