public interface IChartCellCollection extends com.aspose.ms.System.Collections.Generic.IGenericEnumerable<IChartDataCell>
Represents collection of a cells with data.
Modifier and Type | Method and Description |
---|---|
void |
add(IChartDataCell chartDataCell)
Add new cell to the collection.
|
void |
add(java.lang.Object value)
Creates
IChartDataCell from specified value and adds it to the collection. |
IChartDataCell |
get_Item(int index)
Returns a cell (Aspose.Cells.Cell) by index.
|
java.lang.String |
getCellsAddress()
Returns address of the set of cells in workbook.
|
java.lang.String |
getConcatenatedValuesFromCells()
Concatenation string from all cells string values.
|
int |
getCount()
Gets the count of cells in collection.
|
void |
removeAt(int index)
Removes a cell from the collection by index.
|
java.lang.String getCellsAddress()
Returns address of the set of cells in workbook.
java.lang.String getConcatenatedValuesFromCells()
Concatenation string from all cells string values.
IChartDataCell get_Item(int index)
Returns a cell (Aspose.Cells.Cell) by index.
index
- Index of a cell.void add(IChartDataCell chartDataCell)
Add new cell to the collection.
chartDataCell
- New cell to add.void add(java.lang.Object value)
Creates IChartDataCell
from specified value and adds it to the collection.
value
- The value.
IChartDataWorkbook
to add or edit Cell values, be sure that you do not use this worksheet
Maximum number of values added using this method must not exceed 16711680com.aspose.ms.System.InvalidOperationException
- if limit exceededvoid removeAt(int index)
Removes a cell from the collection by index.
index
- Index of a cell to remove.int getCount()
Gets the count of cells in collection.
Read-only int
.