IPointCollection

All Implemented Interfaces: com.aspose.ms.System.Collections.Generic.IGenericEnumerable

public interface IPointCollection extends System.Collections.Generic.IGenericEnumerable<IPoint>

Represents a collection of portions.

Methods

MethodDescription
getCount()Returns the number of points in the collection.
get_Item(int index)Returns a point at the specified index.

getCount()

public abstract int getCount()

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

Returns: int

get_Item(int index)

public abstract IPoint get_Item(int index)

Returns a point at the specified index.

Parameters:

ParameterTypeDescription
indexintIndex of element.

Returns: IPoint - The IPoint object.