This document is archived and information here might be outdated. Recommended version. |
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**
Queries a specified number (Count) of Points starting at the given index into an array of Points.
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.