This document is archived and information here might be outdated.  Recommended version.


IPointCollection2.GetPoints Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IP > IPointCollection2 Interface > IPointCollection2.GetPoints Method
ArcGIS Developer Help

IPointCollection2.GetPoints Method

Populates an array with references to points in the Multipoint. The QueryPoints method on IPointCollection makes copies of the points. This method is intended for internal use only.

[Visual Basic .NET]
Public Sub GetPoints ( _
    ByVal Index As Integer, _
    ByVal Count As Integer, _
    ByRef Points As IPoint _
)
[C#]
public void GetPoints (
    int Index,
    int Count,
    ref IPoint Points
);
[C++]
HRESULT GetPoints(
  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 [out]
Points is a parameter of type IPoint**

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.
[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

IPointCollection2 Interface