PointCollection

Inheritance: java.lang.Object

All Implemented Interfaces: com.aspose.slides.IPointCollection

public class PointCollection implements IPointCollection

Represent collection of animation points.

Constructors

ConstructorDescription
PointCollection()

Methods

MethodDescription
getCount()Returns the number of points in the collection.
get_Item(int index)Returns a point at the specified index.
iterator()Returns an enumerator that iterates through the collection.
iteratorJava()Returns a java iterator for the entire collection.

PointCollection()

public PointCollection()

getCount()

public final int getCount()

Returns the number of points in the collection. Read-only int.

Returns: int

get_Item(int index)

public final IPoint get_Item(int index)

Returns a point at the specified index.

Parameters:

ParameterTypeDescription
indexintIndex of element.

Returns: IPoint - The IPoint object.

iterator()

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

Returns an enumerator that iterates through the collection.

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

iteratorJava()

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

Returns a java iterator for the entire collection.

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