asposecells.api

Class VerticalPageBreak

Encapsulates the object that represents a vertical page break.

Example:

excel = Workbook()
# Add a pagebreak at G5
excel.getWorksheets().get(0).getHorizontalPageBreaks().add("G5")
excel.getWorksheets().get(0).getVerticalPageBreaks().add("G5")

Property Getters/Setters Summary
methodgetColumn()
Gets the column index of the vertical page break.
methodgetEndRow()
Gets the end row index of the vertical page break.
methodgetStartRow()
Gets the start row index of the vertical page break.
 

    • Property Getters/Setters Detail

      • getStartRow : int 

        int getStartRow()
        
        Gets the start row index of the vertical page break.
      • getEndRow : int 

        int getEndRow()
        
        Gets the end row index of the vertical page break.
      • getColumn : int 

        int getColumn()
        
        Gets the column index of the vertical page break.