public abstract class CellCollection extends java.lang.Object implements ICellCollection
Represents a collection of cells.
Modifier and Type | Method and Description |
---|---|
void |
copyTo(com.aspose.ms.System.Array array,
int index)
Copies all elements from the collection to the specified array.
|
ICell |
get_Item(int index)
Returns a cell by it's position.
|
com.aspose.slides.IDOMObject |
getParent_Immediate()
Returns Parent_Immediate object.
|
IPresentation |
getPresentation()
Returns the parent presentation of a CellCollection.
|
IBaseSlide |
getSlide()
Returns the parent slide of a CellCollection.
|
java.lang.Object |
getSyncRoot()
Returns a synchronization root.
|
boolean |
isSynchronized()
Returns a value indicating whether access to the collection is synchronized (thread-safe).
|
com.aspose.ms.System.Collections.Generic.IGenericEnumerator<ICell> |
iterator()
Returns an enumerator that iterates through the collection.
|
int |
size()
Returns the number of cells in a collection.
|
public final com.aspose.slides.IDOMObject getParent_Immediate()
Returns Parent_Immediate object.
Read-only IDOMObject
.
public final int size()
Returns the number of cells in a collection.
Read-only int
.
size
in interface com.aspose.ms.System.Collections.ICollection<ICell>
public final ICell get_Item(int index)
Returns a cell by it's position.
Read-only Cell
.
get_Item
in interface ICellCollection
public final com.aspose.ms.System.Collections.Generic.IGenericEnumerator<ICell> iterator()
Returns an enumerator that iterates through the collection.
iterator
in interface com.aspose.ms.System.Collections.Generic.IGenericEnumerable<ICell>
iterator
in interface com.aspose.ms.System.Collections.IEnumerable<ICell>
iterator
in interface java.lang.Iterable<ICell>
System.Collections.Generic.IEnumerator`1
that can be used to iterate through the collection.public final IBaseSlide getSlide()
Returns the parent slide of a CellCollection.
Read-only IBaseSlide
.
getSlide
in interface ISlideComponent
public final IPresentation getPresentation()
Returns the parent presentation of a CellCollection.
Read-only IPresentation
.
getPresentation
in interface IPresentationComponent
public final void copyTo(com.aspose.ms.System.Array array, int index)
Copies all elements from the collection to the specified array.
copyTo
in interface com.aspose.ms.System.Collections.ICollection<ICell>
array
- Target array.index
- Starting index in the target array.public final boolean isSynchronized()
Returns a value indicating whether access to the collection is synchronized (thread-safe).
Read-only boolean
.
isSynchronized
in interface com.aspose.ms.System.Collections.ICollection<ICell>
public final java.lang.Object getSyncRoot()
Returns a synchronization root.
Read-only Object
.
getSyncRoot
in interface com.aspose.ms.System.Collections.ICollection<ICell>