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 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
);
[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

Example

IGeometryBridge_QueryPoints_Example

 


Feedback Send feedback on this page