Copies some points to an existing array of points. This method is intended for internal use only.
[Visual Basic 6.0] Sub QueryPoints(
ByVal Index As Long, _
ByVal Count As Long, _
Points As IPoint _
)
[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 );
[Java] public void queryPoints ( int Index, int Count, IPoint Points ) throws IOException, AutomationException
[C++] HRESULT QueryPoints( long Index, long Count, IPoint** Points );
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.