ListObjectCollection
Contents
[
Hide
]ListObjectCollection class
Represents a collection of ListObject objects in the worksheet.
Properties
| Name | Type | Description |
|---|---|---|
| Count | int | |
| Item (int) | ListObject | Gets the ListObject by index. |
| Item (java.lang.String) | ListObject | Gets the ListObject by specified name. |
Methods
| Name | Description |
|---|---|
| add | Adds a ListObject to the worksheet. |
| removeAt | |
| updateColumnName | Update all column name of the tables. |
| clear | |
| iterator | |
| get | Reserved for internal use. |
| contains | Reserved for internal use. |
| indexOf | Reserved for internal use. |
ListObjectCollection.Count property
Type: int
ListObjectCollection.Item (int) property
Gets the ListObject by index.
Type: ListObject
ListObjectCollection.Item (java.lang.String) property
Gets the ListObject by specified name.
Type: ListObject
add(startRow, startColumn, endRow, endColumn, hasHeaders) (1 of 3)
Adds a ListObject to the worksheet.
| Parameter | Type | Description |
|---|---|---|
| startRow | int | The start row of the list range. |
| startColumn | int | The start row of the list range. |
| endRow | int | The start row of the list range. |
| endColumn | int | The start row of the list range. |
| hasHeaders | boolean | Whether the range has headers. |
Returns: The index of the new ListObject
add(startCell, endCell, hasHeaders) (2 of 3)
Adds a ListObject to the worksheet.
| Parameter | Type | Description |
|---|---|---|
| startCell | String | The start cell of the list range. |
| endCell | String | The end cell of the list range. |
| hasHeaders | boolean | Whether the range has headers. |
Returns: The index of the new ListObject
add(value) (3 of 3)
Reserved for internal use.
removeAt(index)
updateColumnName()
Update all column name of the tables.
clear()
iterator()
get(index)
Reserved for internal use.
contains(value)
Reserved for internal use.
indexOf(value)
Reserved for internal use.