HorizontalPageBreakCollection.Add

Add(int, int, int)

Adds a horizontal page break to the collection.

public int Add(int row, int startColumn, int endColumn)
ParameterTypeDescription
rowInt32Row index, zero based.
startColumnInt32Start column index, zero based.
endColumnInt32End column index, zero based.

Return Value

HorizontalPageBreak object index.

Remarks

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

See Also


Add(int)

Adds a horizontal page break to the collection.

public int Add(int row)
ParameterTypeDescription
rowInt32Cell row index, zero based.

Return Value

HorizontalPageBreak object index.

Remarks

Page break is added in the top left of the cell. Please set a horizontal page break and a vertical page break concurrently.

See Also


Add(int, int)

Adds a horizontal page break to the collection.

public int Add(int row, int column)
ParameterTypeDescription
rowInt32Cell row index, zero based.
columnInt32Cell column index, zero based.

Return Value

HorizontalPageBreak object index.

Remarks

Page break is added in the top left of the cell. Please set a horizontal page break and a vertical page break concurrently.

See Also


Add(string)

Adds a horizontal page break to the collection.

public int Add(string cellName)
ParameterTypeDescription
cellNameStringCell name.

Return Value

HorizontalPageBreak object index.

Remarks

Page break is added in the top left of the cell. Please set a horizontal page break and a vertical page break concurrently.

See Also