ChartCellCollection
ChartCellCollection class
Represents collection of a cells with data.
add
| Name | Description |
|---|
| add (ChartDataCell) | Add new cell to the collection. |
Parameters:
add
| Name | Description |
|---|
| add (Object) | Creates ChartDataCell from specified value and adds it to the collection. |
Parameters:
| Name | Type | Description |
|---|
| value | Object | The value. This function adds worksheet with name AUTO_DATA and adds all values there. If you use ChartDataWorkbook to add or edit Cell values, be sure that you do not use this worksheet Maximum number of values added using this function must not exceed 16711680 |
Error
| Error | Condition |
|---|
| com.aspose.ms.System.InvalidOperationException | if limit exceeded |
getCellsAddress
| Name | Description |
|---|
| getCellsAddress () | Returns address of the set of cells in workbook. |
Returns:
String
getConcatenatedValuesFromCells
| Name | Description |
|---|
| getConcatenatedValuesFromCells () | Concatenation string from all cells string values. |
Returns:
String
getCount
| Name | Description |
|---|
| getCount () | Gets the count of cells in collection. Read-only int. |
Returns:
int
get_Item
| Name | Description |
|---|
| get_Item (int) | Returns a cell (IChartDataCell) by index. |
Parameters:
| Name | Type | Description |
|---|
| index | int | Index of a cell. |
Returns:
ChartDataCell
iterator
| Name | Description |
|---|
| iterator () | Returns an enumerator that iterates through the collection. |
Returns:
iteratorJava
| Name | Description |
|---|
| iteratorJava () | Returns a java iterator for the entire collection. |
Returns:
removeAt
| Name | Description |
|---|
| removeAt (int) | Removes a cell from the collection by index. |
Parameters:
| Name | Type | Description |
|---|
| index | int | Index of a cell to remove. |