asposecells.api

Class HorizontalPageBreak

Encapsulates the object that represents a horizontal page break.

Example:

# Instantiating a Workbook object
workbook = Workbook()

# Obtaining the reference of the newly added worksheet by passing its sheet index
worksheet = workbook.getWorksheets().get(0)

# Add a page break at cell Y30
Index = worksheet.getHorizontalPageBreaks().add("Y30")

# get the newly added horizontal page break
hPageBreak = worksheet.getHorizontalPageBreaks().get(Index)

Property Getters/Setters Summary
methodgetEndColumn()
Gets the end column index of this horizontal page break.
methodgetRow()
Gets the zero based row index.
methodgetStartColumn()
Gets the start column index of this horizontal page break.
 

    • Property Getters/Setters Detail

      • getStartColumn : int 

        int getStartColumn()
        
        Gets the start column index of this horizontal page break.
      • getEndColumn : int 

        int getEndColumn()
        
        Gets the end column index of this horizontal page break.
      • getRow : int 

        int getRow()
        
        Gets the zero based row index.