public interface IPointCollection
extends java.io.Serializable
Description: 'Provides access to members that manipulate the points of a Multipoint, Path, Ring, Polyline, Polygon, TriangleFan, TriangleStrip, or MultiPatch.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
IID
Deprecated.
Internal use only
|
static int |
IIDde08a214_4fc2_11d1_834e_0000f8775be9 |
static int |
xxDummy
Deprecated.
Internal use only
|
Modifier and Type | Method and Description |
---|---|
void |
addPoint(IPoint inPoint,
java.lang.Object before,
java.lang.Object after)
Adds a vertex to a Path, Ring, Polyline, or Polygon; or adds a reference to the input point to a Multipoint, TriangleFan, or TriangleStrip.
|
void |
addPointCollection(IPointCollection newPoints)
Adds copies of points in the input point collection to this Path, Ring, Polyline, or Polygon; or adds references to the points in the collection to this Multipoint, TriangleFan, or TriangleStrip.
|
void |
addPoints(int count,
IPoint newPoints)
Adds copies of the input points as vertices to this Path, Ring, Polyline, or Polygon; or references to the input points to this Multipoint, TriangleFan, or TriangleStrip.
|
IEnumVertex |
getEnumVertices()
A new enumerator for this point collection.
|
IPoint |
getPoint(int i)
A copy of the ith vertex of a Path, Ring, Polyline, or Polygon; or a reference to the ith point of a Multipoint, TriangleFan, or TriangleStrip.
|
int |
getPointCount()
The number of points in the collection.
|
void |
insertPointCollection(int index,
IPointCollection newPoints)
Inserts copies of points, from the input point collection, as vertices into this Path, Ring, Polyline, or Polygon; or references to points in the input point collection into this Multipoint, TriangleFan, or TriangleStrip.
|
void |
insertPoints(int index,
int count,
IPoint newPoints)
Inserts copies of the input points as vertices into a Path, Ring, Polyline, or Polygon; or references to the input points into a Multipoint, TriangleFan, or TriangleStrip.
|
void |
queryPoint(int index,
IPoint point)
Queries for a point in the PointCollection at given index.
|
void |
queryPoints(int index,
int count,
IPoint points)
Copies some points to an existing array of points.
|
void |
removePoints(int index,
int count)
Removes vertices from a Path, Ring, Polyline, or Polygon, or references to points from a Multipoint, TriangleFan, or TriangleStrip.
|
void |
replacePointCollection(int index,
int goingAway,
IPointCollection newPoints)
Replaces vertices/points within a PointCollection.
|
void |
replacePoints(int index,
int comingIn,
int goingAway,
IPoint newPoints)
Replaces vertices/points within a PointCollection.
|
void |
setPointCollection(IPointCollection newPoints)
Replaces all vertices of this Path, Ring, Polyline, or Polygon with copies of the points in the input collection; or all points of this Multipoint, TriangleFan, or TriangleStrip with references to points from the input collection.
|
void |
setPoints(int count,
IPoint newPoints)
Replaces all existing vertices of this Path, Ring, Polyline, or Polygon with copies of the input points; or all existing points of this Multipoint, TriangleFan, or TriangleStrip with references to the input points (for C++ and VB users only).
|
void |
updatePoint(int i,
IPoint p)
Changes the ith vertex or point to be a copy of the input point.
|
static final int IIDde08a214_4fc2_11d1_834e_0000f8775be9
static final int xxDummy
static final java.lang.String IID
int getPointCount() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.IPoint getPoint(int i) throws java.io.IOException, AutomationException
i
- The i (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void addPoint(IPoint inPoint, java.lang.Object before, java.lang.Object after) throws java.io.IOException, AutomationException
inPoint
- A reference to a com.esri.arcgis.geometry.IPoint (in)before
- A Variant (in, optional, pass null if not required)after
- A Variant (in, optional, pass null if not required)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void updatePoint(int i, IPoint p) throws java.io.IOException, AutomationException
i
- The i (in)p
- A reference to a com.esri.arcgis.geometry.IPoint (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void queryPoints(int index, int count, IPoint points) throws java.io.IOException, AutomationException
index
- The index (in)count
- The count (in)points
- A reference to a com.esri.arcgis.geometry.IPoint (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void insertPoints(int index, int count, IPoint newPoints) throws java.io.IOException, AutomationException
index
- The index (in)count
- The count (in)newPoints
- A reference to a com.esri.arcgis.geometry.IPoint (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void insertPointCollection(int index, IPointCollection newPoints) throws java.io.IOException, AutomationException
index
- The index (in)newPoints
- A reference to a com.esri.arcgis.geometry.IPointCollection (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void addPoints(int count, IPoint newPoints) throws java.io.IOException, AutomationException
count
- The count (in)newPoints
- A reference to a com.esri.arcgis.geometry.IPoint (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void addPointCollection(IPointCollection newPoints) throws java.io.IOException, AutomationException
newPoints
- A reference to a com.esri.arcgis.geometry.IPointCollection (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void setPoints(int count, IPoint newPoints) throws java.io.IOException, AutomationException
count
- The count (in)newPoints
- A reference to a com.esri.arcgis.geometry.IPoint (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void setPointCollection(IPointCollection newPoints) throws java.io.IOException, AutomationException
newPoints
- A reference to a com.esri.arcgis.geometry.IPointCollection (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void removePoints(int index, int count) throws java.io.IOException, AutomationException
index
- The index (in)count
- The count (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.IEnumVertex getEnumVertices() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void replacePoints(int index, int comingIn, int goingAway, IPoint newPoints) throws java.io.IOException, AutomationException
index
- The index (in)comingIn
- The comingIn (in)goingAway
- The goingAway (in)newPoints
- A reference to a com.esri.arcgis.geometry.IPoint (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void replacePointCollection(int index, int goingAway, IPointCollection newPoints) throws java.io.IOException, AutomationException
index
- The index (in)goingAway
- The goingAway (in)newPoints
- A reference to a com.esri.arcgis.geometry.IPointCollection (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void queryPoint(int index, IPoint point) throws java.io.IOException, AutomationException
index
- The index (in)point
- A reference to a com.esri.arcgis.geometry.IPoint (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.