namespace com.azkoss.excellite { using System; /// ///Specifies a vertical position where the new page begins when the worksheet is printed. /// public class VerticalPageBreak : PageBreak { // Methods internal VerticalPageBreak(int column, int firstRow, int lastRow) : base(column, firstRow, lastRow) { } // Properties /// ///Index of the first column of the new page. /// public int Column { get { return base.breakIndex; } set { base.breakIndex = value; } } /// ///Index of the first row of the new page. /// /// ///Use 0 (first row) if you don't care. /// public int FirstRow { get { return base.firstLimit; } set { base.firstLimit = value; } } /// ///Index of the last row of the new page. /// /// ///Use 65535 (last row) if you don't care. /// public int LastRow { get { return base.lastLimit; } set { base.lastLimit = value; } } } }