VerticalPageBreak class

VerticalPageBreak class

Encapsulates the object that represents a vertical page break.

The VerticalPageBreak type exposes the following members:

Properties

PropertyDescription
start_rowGets the start row index of the vertical page break.
end_rowGets the end row index of the vertical page break.
columnGets the column index of the vertical page break.

Example

from aspose.cells import Workbook

excel = Workbook()
# Add a pagebreak at G5
excel.worksheets[0].horizontal_page_breaks.add("G5")
excel.worksheets[0].vertical_page_breaks.add("G5")

See Also