HorizontalPageBreak
Contents
[
Hide
]HorizontalPageBreak class
Encapsulates the object that represents a horizontal page break.
class HorizontalPageBreak;
Example
const { Workbook } = require("aspose.cells.node");
//Instantiating a Workbook object
var workbook = new Workbook();
//Obtaining the reference of the newly added worksheet by passing its sheet index
var worksheet = workbook.getWorksheets().get(0);
//Add a page break at cell Y30
var Index = worksheet.getHorizontalPageBreaks().add("Y30");
//get the newly added horizontal page break
var hPageBreak = worksheet.getHorizontalPageBreaks().get(Index);
Methods
Method | Description |
---|---|
getStartColumn() | Gets the start column index of this horizontal page break. |
getEndColumn() | Gets the end column index of this horizontal page break. |
getRow() | Gets the zero based row index. |
isNull() | Checks whether the implementation object is null. |
getStartColumn()
Gets the start column index of this horizontal page break.
getStartColumn() : number;
getEndColumn()
Gets the end column index of this horizontal page break.
getEndColumn() : number;
getRow()
Gets the zero based row index.
getRow() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;