add method

add

Adds a vertical page break to the collection.

Returns

VerticalPageBreak object index.

def add(self, column):
    ...
ParameterTypeDescription
columnintCell 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

Adds a vertical page break to the collection.

Returns

VerticalPageBreak object index.

def add(self, cell_name):
    ...
ParameterTypeDescription
cell_namestrCell 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

Adds a vertical page break to the collection.

Returns

VerticalPageBreak object index.

def add(self, row, column):
    ...
ParameterTypeDescription
rowintCell row index, zero based.
columnintCell 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

Adds a vertical page break to the collection.

Returns

VerticalPageBreak object index.

def add(self, start_row, end_row, column):
    ...
ParameterTypeDescription
start_rowintStart row index, zero based.
end_rowintEnd row index, zero based.
columnintColumn index, zero based.

Remarks

This method is used to add a vertical pagebreak within a print area.

See Also