SectionSlideCollection
Inheritance: java.lang.Object, com.aspose.slides.DomObject
All Implemented Interfaces: com.aspose.slides.ISectionSlideCollection
public final class SectionSlideCollection extends DomObject<Section> implements ISectionSlideCollection
Represents a collection of slides in the section.
Methods
Method | Description |
---|---|
get_Item(int index) | Gets the element at the specified index. |
size() | Gets the number of elements actually contained in the collection. |
copyTo(System.Array array, int index) | Copies the entire collection to the specified array. |
isSynchronized() | Returns a value indicating whether access to the collection is synchronized (thread-safe). |
getSyncRoot() | Returns a synchronization root. |
iterator() | Returns an enumerator that iterates through the collection. |
iteratorJava() | Returns a java iterator for the entire collection. |
get_Item(int index)
public final ISlide get_Item(int index)
Gets the element at the specified index. Read-only ISlide.
Parameters:
Parameter | Type | Description |
---|---|---|
index | int |
Returns: ISlide
size()
public final int size()
Gets the number of elements actually contained in the collection. Read-only int.
Returns: int
copyTo(System.Array array, int index)
public final void copyTo(System.Array array, int index)
Copies the entire collection to the specified array.
Parameters:
Parameter | Type | Description |
---|---|---|
array | com.aspose.ms.System.Array | Target array |
index | int | Index in the target array. |
isSynchronized()
public final boolean isSynchronized()
Returns a value indicating whether access to the collection is synchronized (thread-safe). Read-only boolean.
Returns: boolean
getSyncRoot()
public final Object getSyncRoot()
Returns a synchronization root. Read-only Object.
Returns: java.lang.Object
iterator()
public final System.Collections.Generic.IGenericEnumerator<ISlide> iterator()
Returns an enumerator that iterates through the collection.
Returns: com.aspose.ms.System.Collections.Generic.IGenericEnumerator<com.aspose.slides.ISlide> - A IGenericEnumerator that can be used to iterate through the collection.
iteratorJava()
public final System.Collections.Generic.IGenericEnumerator<ISlide> iteratorJava()
Returns a java iterator for the entire collection.
Returns: com.aspose.ms.System.Collections.Generic.IGenericEnumerator<com.aspose.slides.ISlide> - An java.util.Iterator for the entire collection.