Class VerticalPageBreak
Class VerticalPageBreak
Namespace: Aspose.Cells
Assembly: Aspose.Cells.dll (25.2.0)
Encapsulates the object that represents a vertical page break.
public class VerticalPageBreak
Inheritance
Inherited Members
object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Examples
csharp
[C#]
Workbook excel = new Workbook();
//Add a pagebreak at G5
excel.Worksheets[0].HorizontalPageBreaks.Add("G5");
excel.Worksheets[0].VerticalPageBreaks.Add("G5");
[VB]
Dim excel as Workbook = new Workbook()
'Add a pagebreak at G5
excel.Worksheets(0).HorizontalPageBreaks.Add("G5")
excel.Worksheets(0).VerticalPageBreaks.Add("G5")
Properties
Column
Gets the column index of the vertical page break.
public int Column { get; }
Property Value
EndRow
Gets the end row index of the vertical page break.
public int EndRow { get; }
Property Value
StartRow
Gets the start row index of the vertical page break.
public int StartRow { get; }