add method

add

Adds a horizontal page break to the collection.

Returns

HorizontalPageBreak object index.

def add(self, row):
    ...
ParameterTypeDescription
rowintCell row 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 horizontal page break to the collection.

Returns

HorizontalPageBreak 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 horizontal page break to the collection.

Returns

HorizontalPageBreak 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 horizontal page break to the collection.

Returns

HorizontalPageBreak object index.

def add(self, row, start_column, end_column):
    ...
ParameterTypeDescription
rowintRow index, zero based.
start_columnintStart column index, zero based.
end_columnintEnd column index, zero based.

Remarks

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

See Also