com.aspose.slides

Interfaces

Classes

Exceptions

com.aspose.slides

Interface IChartCellCollection

  • All Superinterfaces:
    com.aspose.ms.System.Collections.IEnumerable<IChartDataCell>, com.aspose.ms.System.Collections.Generic.IGenericEnumerable<IChartDataCell>, java.lang.Iterable<IChartDataCell>
    All Known Implementing Classes:
    ChartCellCollection


    public interface IChartCellCollection
    extends com.aspose.ms.System.Collections.Generic.IGenericEnumerable<IChartDataCell>

    Represents collection of a cells with data.

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      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.
      • Methods inherited from interface com.aspose.ms.System.Collections.Generic.IGenericEnumerable

        iterator
      • Methods inherited from interface java.lang.Iterable

        forEach, spliterator
    • Method Detail

      • getCellsAddress

        java.lang.String getCellsAddress()

        Returns address of the set of cells in workbook.

      • getConcatenatedValuesFromCells

        java.lang.String getConcatenatedValuesFromCells()

        Concatenation string from all cells string values.

      • get_Item

        IChartDataCell get_Item(int index)

        Returns a cell (Aspose.Cells.Cell) by index.

        Parameters:
        index - Index of a cell.
        Returns:
        Cell with data.
      • add

        void add(IChartDataCell chartDataCell)

        Add new cell to the collection.

        Parameters:
        chartDataCell - New cell to add.
      • add

        void add(java.lang.Object value)

        Creates IChartDataCell from specified value and adds it to the collection.

        Parameters:
        value - The value.


        This method adds worksheet with name AUTO_DATA and adds all values there. If you use 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 16711680
        Throws:
        com.aspose.ms.System.InvalidOperationException - if limit exceeded
      • removeAt

        void removeAt(int index)

        Removes a cell from the collection by index.

        Parameters:
        index - Index of a cell to remove.
      • getCount

        int getCount()

        Gets the count of cells in collection. Read-only int.