com.esri.arcgis.geometry
Interface esriGeometryHitPartType

All Superinterfaces:
Serializable

public interface esriGeometryHitPartType
extends Serializable

Describes the parts of a geometry that can be located by their proximity to a query point. Specified as a parameter to the HitTest method.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux


Field Summary
static int esriGeometryPartBoundary
          Locates a point anywhere on the boundary of a polygon, or anywhere on a polyline, that is closest to the query point.
static int esriGeometryPartCentroid
          Locates the geometric centroid of a polygon or the center of an envelope closest to the query point.
static int esriGeometryPartEndpoint
          Locates an endpoint of the polyline closest to the query point.
static int esriGeometryPartMidpoint
          Locates a midpoint of a segment belonging to a polygon or polyline that is closest to the query point.
static int esriGeometryPartNone
          Not used.
static int esriGeometryPartSurface
          Locates a point anywhere on the surface of a polygon or multipatch that is closest to the query ray.
static int esriGeometryPartVertex
          Locates a vertex of the geometry closest to the query point.
 

Field Detail

esriGeometryPartNone

static final int esriGeometryPartNone
Not used.

See Also:
Constant Field Values

esriGeometryPartVertex

static final int esriGeometryPartVertex
Locates a vertex of the geometry closest to the query point.

See Also:
Constant Field Values

esriGeometryPartBoundary

static final int esriGeometryPartBoundary
Locates a point anywhere on the boundary of a polygon, or anywhere on a polyline, that is closest to the query point.

See Also:
Constant Field Values

esriGeometryPartMidpoint

static final int esriGeometryPartMidpoint
Locates a midpoint of a segment belonging to a polygon or polyline that is closest to the query point.

See Also:
Constant Field Values

esriGeometryPartCentroid

static final int esriGeometryPartCentroid
Locates the geometric centroid of a polygon or the center of an envelope closest to the query point.

See Also:
Constant Field Values

esriGeometryPartEndpoint

static final int esriGeometryPartEndpoint
Locates an endpoint of the polyline closest to the query point.

See Also:
Constant Field Values

esriGeometryPartSurface

static final int esriGeometryPartSurface
Locates a point anywhere on the surface of a polygon or multipatch that is closest to the query ray.

See Also:
Constant Field Values