com.aspose.cells

Class VerticalPageBreak

  • java.lang.Object
    • com.aspose.cells.VerticalPageBreak
public class VerticalPageBreak 
extends java.lang.Object

Encapsulates the object that represents a vertical page break.

Example:

//Add a pagebreak at G5
excel.getWorksheets().get(0).getHorizontalPageBreaks().add("G5");
excel.getWorksheets().get(0).getVerticalPageBreaks().add("G5");

Property Getters/Setters Summary
intgetColumn()
Gets the column index of the vertical page break.
intgetEndRow()
Gets the end row index of the vertical page break.
intgetStartRow()
Gets the start row index of the vertical page break.
 

    • Property Getters/Setters Detail

      • getStartRow

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

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

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