VerticalPageBreakCollection.Add

Add(int, int, int)

Adds a vertical page break to the collection.

public int Add(int startRow, int endRow, int column)
ParameterTypeDescription
startRowInt32Start row index, zero based.
endRowInt32End row index, zero based.
columnInt32Column index, zero based.

Return Value

VerticalPageBreak object index.

Remarks

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

See Also


Add(int)

Adds a vertical page break to the collection.

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

Return Value

VerticalPageBreak 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 vertical 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

VerticalPageBreak 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 vertical page break to the collection.

public int Add(string cellName)
ParameterTypeDescription
cellNameStringCell name.

Return Value

VerticalPageBreak 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