This document is archived and information here might be outdated. Recommended version. |
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**
When using C# you must use the IGeometryBridge interface to call this method.
When using VBNET you must use the IGeometryBridge interface to call this method.