ICellCollection

ICellCollection

Overview

ICellCollection is a interface in Aspose.Slides FOSS for Java. Inherits from: ISlideComponent, IPresentationComponent.

Represents a collection of cells.

This interface provides 8 methods for working with ICellCollection objects in Java programs. Available methods include: asICollection, asIEnumerable, asIPresentationComponent, asISlideComponent, get, getPresentation, getSlide, size. All public members are accessible to any Java application after installing the Aspose.Slides FOSS for Java package. Properties: presentation, slide.

Properties

NameTypeAccessDescription
slideIBaseSlideReadReturns the parent slide.
presentationIPresentationReadReturns the presentation containing this component.

Methods

SignatureDescription
get(index: int)ICellGets the cell at the specified index.
size()intReturns the number of cells in the collection.
asISlideComponent()ISlideComponentReturns the base {@link ISlideComponent} interface.
asICollection()List<ICell>Returns the collection as a {@link List}.
asIEnumerable()Iterable<ICell>Returns the collection as an {@link Iterable}.
getSlide()IBaseSlideReturns the parent slide.
asIPresentationComponent()IPresentationComponentReturns the base {@link IPresentationComponent} interface.
getPresentation()IPresentationReturns the presentation containing this component.

See Also