GradientStopCollectionEffectiveData

Inheritance: java.lang.Object

All Implemented Interfaces: com.aspose.slides.IEffectiveData, com.aspose.slides.IGradientStopCollectionEffectiveData

public class GradientStopCollectionEffectiveData implements IEffectiveData, IGradientStopCollectionEffectiveData

Represents a collection of GradientStopData objects.

Methods

MethodDescription
size()Returns the number of gradient stops in a collection.
get_Item(int index)Returns the gradient stop by index.
iterator()Returns an enumerator that iterates through the collection.
iteratorJava()Returns a java iterator for the entire collection.
copyTo(System.Array array, int index)Copies all elements from the collection to the specified array.
isSynchronized()Returns a value indicating whether access to the collection is synchronized (thread-safe).
getSyncRoot()Returns a synchronization root.

size()

public final int size()

Returns the number of gradient stops in a collection. Read-only int.

Returns: int

get_Item(int index)

public final IGradientStopEffectiveData get_Item(int index)

Returns the gradient stop by index.

Parameters:

ParameterTypeDescription
indexint

Returns: IGradientStopEffectiveData

iterator()

public final System.Collections.Generic.IGenericEnumerator<IGradientStopEffectiveData> iterator()

Returns an enumerator that iterates through the collection.

Returns: com.aspose.ms.System.Collections.Generic.IGenericEnumerator<com.aspose.slides.IGradientStopEffectiveData> - A IGenericEnumerator that can be used to iterate through the collection.

iteratorJava()

public final System.Collections.Generic.IGenericEnumerator<IGradientStopEffectiveData> iteratorJava()

Returns a java iterator for the entire collection.

Returns: com.aspose.ms.System.Collections.Generic.IGenericEnumerator<com.aspose.slides.IGradientStopEffectiveData> - An java.util.Iterator for the entire collection.

copyTo(System.Array array, int index)

public final void copyTo(System.Array array, int index)

Copies all elements from the collection to the specified array.

Parameters:

ParameterTypeDescription
arraycom.aspose.ms.System.ArrayTarget array.
indexintStarting 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