add method
add(self, column)
Adds a vertical page break to the collection.
Returns
VerticalPageBreak
object index.
def add(self, column):
...
Parameter | Type | Description |
---|---|---|
column | int | Cell column index, zero based. |
Remarks
Page break is added in the top left of the cell. Please set a horizontal page break and a vertical page break concurrently.
add(self, cell_name)
Adds a vertical page break to the collection.
Returns
VerticalPageBreak
object index.
def add(self, cell_name):
...
Parameter | Type | Description |
---|---|---|
cell_name | str | Cell name. |
Remarks
Page break is added in the top left of the cell. Please set a horizontal page break and a vertical page break concurrently.
add(self, row, column)
Adds a vertical page break to the collection.
Returns
VerticalPageBreak
object index.
def add(self, row, column):
...
Parameter | Type | Description |
---|---|---|
row | int | Cell row index, zero based. |
column | int | Cell column index, zero based. |
Remarks
Page break is added in the top left of the cell. Please set a horizontal page break and a vertical page break concurrently.
add(self, start_row, end_row, column)
Adds a vertical page break to the collection.
Returns
VerticalPageBreak
object index.
def add(self, start_row, end_row, column):
...
Parameter | Type | Description |
---|---|---|
start_row | int | Start row index, zero based. |
end_row | int | End row index, zero based. |
column | int | Column index, zero based. |
Remarks
This method is used to add a vertical pagebreak within a print area.
See Also
- module
aspose.cells
- class
VerticalPageBreak
- class
VerticalPageBreakCollection