HorizontalPageBreak
Contents
[
Hide
]HorizontalPageBreak class
Encapsulates the object that represents a horizontal page break.
class HorizontalPageBreak;
Example
const { Workbook } = AsposeCells;
//Instantiating a Workbook object
var workbook = new Workbook();
//Obtaining the reference of the newly added worksheet by passing its sheet index
var worksheet = workbook.worksheets.get(0);
//Add a page break at cell Y30
var Index = worksheet.horizontalPageBreaks.add("Y30");
//get the newly added horizontal page break
var hPageBreak = worksheet.horizontalPageBreaks.get(Index);
Properties
Property | Type | Description |
---|---|---|
startColumn | number | Readonly. Gets the start column index of this horizontal page break. |
endColumn | number | Readonly. Gets the end column index of this horizontal page break. |
row | number | Readonly. Gets the zero based row index. |
startColumn
Readonly. Gets the start column index of this horizontal page break.
startColumn : number;
endColumn
Readonly. Gets the end column index of this horizontal page break.
endColumn : number;
row
Readonly. Gets the zero based row index.
row : number;