com.aspose.slides.pptx
Class CellListEx

java.lang.Object
  extended by com.aspose.slides.pptx.CellListEx
Direct Known Subclasses:
ColumnEx, RowEx

public abstract class CellListEx
extends java.lang.Object

Represents a collection of cells.


Method Summary
 CellEx get(int index)
          Returns a cell by it's position.
 PresentationEx getPresentation()
          Returns the parent presentation of a CellListEx.
 BaseSlideEx getSlide()
          Returns the parent slide of a CellListEx.
 java.util.Iterator iterator()
          Returns an iterator for all cells which top-left corner belongs to this collection.
 int size()
          Returns the number of cells in a collection.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

get

public CellEx get(int index)
Returns a cell by it's position. One CellEx Object can be returned for several indexes in case cell is merged.

Parameters:
index - position of a cell.
Returns:
See CellEx.

size

public int size()
Returns the number of cells in a collection.


getSlide

public BaseSlideEx getSlide()
Returns the parent slide of a CellListEx.


getPresentation

public PresentationEx getPresentation()
Returns the parent presentation of a CellListEx.


iterator

public java.util.Iterator iterator()
Returns an iterator for all cells which top-left corner belongs to this collection. Each cell returned only once.