public class PointCollection extends java.lang.Object implements IPointCollection
Represent collection of animation points.
Constructor and Description |
---|
PointCollection() |
Modifier and Type | Method and Description |
---|---|
IPoint |
get_Item(int index)
Returns a point at the specified index.
|
int |
getCount()
Returns the number of points in the collection.
|
com.aspose.ms.System.Collections.Generic.IGenericEnumerator<IPoint> |
iterator()
Returns an enumerator that iterates through the collection.
|
public final int getCount()
Returns the number of points in the collection.
Read-only int
.
getCount
in interface IPointCollection
public final IPoint get_Item(int index)
Returns a point at the specified index.
get_Item
in interface IPointCollection
index
- Index of element.IPoint
object.public final com.aspose.ms.System.Collections.Generic.IGenericEnumerator<IPoint> iterator()
Returns an enumerator that iterates through the collection.
iterator
in interface com.aspose.ms.System.Collections.Generic.IGenericEnumerable<IPoint>
iterator
in interface com.aspose.ms.System.Collections.IEnumerable<IPoint>
iterator
in interface java.lang.Iterable<IPoint>
System.Collections.Generic.IEnumerator`1
that can be used to iterate through the collection.