VerticalPageBreakCollection
VerticalPageBreakCollection class
Encapsulates a collection of VerticalPageBreak objects.
Properties
| Name | Type | Description |
|---|---|---|
| Count | int | |
| Item (int) | VerticalPageBreak | Gets the VerticalPageBreak element at the specified index. |
| Item (java.lang.String) | VerticalPageBreak | Gets the VerticalPageBreak element with the specified cell name. |
Methods
| Name | Description |
|---|---|
| add | Adds 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.
| Parameter | Type | Description |
|---|---|---|
| startRow | int | Start row index, zero based. |
| endRow | int | End row index, zero based. |
| column | int | Column 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.
| Parameter | Type | Description |
|---|---|---|
| column | int | Cell 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.
| Parameter | Type | Description |
|---|---|---|
| row | int | Cell row index, zero based. |
| column | int | Cell 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.
| Parameter | Type | Description |
|---|---|---|
| cellName | String | Cell name. |
Returns: VerticalPageBreak object index.
add(value) (5 of 5)
Reserved for internal use.
removeAt(index)
Removes the VPageBreak element at a specified name.
| Parameter | Type | Description |
|---|---|---|
| index | int | Element index, zero based. |
clear()
iterator()
get(index)
Reserved for internal use.
contains(value)
Reserved for internal use.
indexOf(value)
Reserved for internal use.