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


IIndexQuery2.Within Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Carto > ESRI.ArcGIS.Carto > Interfaces > II > IIndexQuery2 Interface > IIndexQuery2.Within Property
ArcGIS Developer Help

IIndexQuery2.Within Property

Finds all features that the input shape lies within.

[Visual Basic .NET]
Public Function get_Within ( _
    ByVal pShape As IGeometry _
) As IFeatureCursor
[C#]
public IFeatureCursor get_Within (
    IGeometry pShape
);
[C++]
HRESULT get_Within(
  IGeometry* pShape,
  IFeatureCursor** ppFeatureCursor
);
[C++]
Parameters
pShape [in]

pShape is a parameter of type IGeometry* ppFeatureCursor [out, retval]
ppFeatureCursor is a parameter of type IFeatureCursor**

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

Returns a FeatureCursor containing all the features in the spatial index for which the input shape is within.

See Also

IIndexQuery2 Interface