ArcObjects Library Reference (Geometry)  

IPointCollection.QueryPoints Method

Copies some points to an existing array of points. This method is intended for internal use only.

[Visual Basic .NET]
Public Sub QueryPoints ( _
    ByVal Index As Integer, _
    ByVal Count As Integer, _
    ByRef Points As IPoint _
)
[C#]
public void QueryPoints (
    int Index,
    int Count,
    ref IPoint Points
);
[C++]
HRESULT QueryPoints(
  long Index,
  long Count,
  IPoint** Points
);
[C++]

Parameters

Index   Index is a parameter of type long Count   Count is a parameter of type long Points

  Points is a parameter of type IPoint

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

Queries a specified number (Count) of Points starting at the given index into an array of Points.

[C#]

When using C# you must use the IGeometryBridge interface to call this method.

[Visual Basic .NET]

When using VBNET you must use the IGeometryBridge interface to call this method.

See Also

IPointCollection Interface