VerticalPageBreakCollection

VerticalPageBreakCollection class

Encapsulates a collection of VerticalPageBreak objects.

Properties

NameTypeDescription
Countint
Item (int)VerticalPageBreakGets the VerticalPageBreak element at the specified index.
Item (java.lang.String)VerticalPageBreakGets the VerticalPageBreak element with the specified cell name.

Methods

NameDescription
addAdds a vertical page break to the collection.

This method is used to add a vertical pagebreak within a print area. | | removeAt | Removes the VPageBreak element at a specified name. | | clear | | | iterator | | | get | Reserved for internal use. | | contains | Reserved for internal use. | | indexOf | Reserved for internal use. |

VerticalPageBreakCollection.Count property

Type: int

VerticalPageBreakCollection.Item (int) property

Gets the VerticalPageBreak element at the specified index.

Type: VerticalPageBreak

VerticalPageBreakCollection.Item (java.lang.String) property

Gets the VerticalPageBreak element with the specified cell name.

Type: VerticalPageBreak

add(startRow, endRow, column) (1 of 5)

Adds a vertical page break to the collection.

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

ParameterTypeDescription
startRowintStart row index, zero based.
endRowintEnd row index, zero based.
columnintColumn index, zero based.

Returns: VerticalPageBreak object index.


add(column) (2 of 5)

Adds a vertical page break to the collection.

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

ParameterTypeDescription
columnintCell column index, zero based.

Returns: VerticalPageBreak object index.


add(row, column) (3 of 5)

Adds a vertical page break to the collection.

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

ParameterTypeDescription
rowintCell row index, zero based.
columnintCell column index, zero based.

Returns: VerticalPageBreak object index.


add(cellName) (4 of 5)

Adds a vertical page break to the collection.

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

ParameterTypeDescription
cellNameStringCell name.

Returns: VerticalPageBreak object index.


add(value) (5 of 5)

Reserved for internal use.

removeAt(index)

Removes the VPageBreak element at a specified name.

ParameterTypeDescription
indexintElement index, zero based.

clear()

iterator()

get(index)

Reserved for internal use.

contains(value)

Reserved for internal use.

indexOf(value)

Reserved for internal use.