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


IGeometryResultOptions Interface (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IG > IGeometryResultOptions Interface
ArcGIS Developer Help

IGeometryResultOptions Interface

Provides access to methods that control geometry options.

Product Availability

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

Members

Name Description
Read/write property DensifyGeometries Indicates if MaximumSegmentLength and MaximumDeviation will be honored to densify geometry in the results.
Read/write property GeneralizeGeometries Indicates whether MaximumAllowableOffset will be honored to generalize the geometry in the results.
Read/write property MaximumAllowableOffset The maximum allowable offset.
Read/write property MaximumDeviation The maximum deviation.
Read/write property MaximumSegmentLength The maximum segment length.

Classes that implement IGeometryResultOptions

Classes Description
GeometryResultOptions Esri Geometry export options object.

Remarks

IGeometryResultOptions has properties used to modify output geometry. Modification can include densification (DensifyGeometries) or generalization (GeneralizeGeometries).

Values for MaximumSegmentLength, MaximumDeviation or MaximumAllowableOffset should be in the units of the map's spatial reference unless the returned geometry is asked to be in another spatial reference (in the case of QueryFeatureData or QueryFeatureData2). For example, if the units of the spatial reference of the feature class being queried is in decimal degrees and the spatial reference units of the map is in meters, the values specified for MaximumSegmentLength, MaximumDeviation or MaximumAllowableOffset must be in meters. In case IQueryFilter.OutputSpatialReference is set to a spatial reference unit in feet, then those values should be in feet.

When GeneralizeGeometries is set to true, the MaximumAllowableOffset property should also be set. When DensifyGeometries is set to true, MaximumDeviation and MaximumSegmentLength should also be set. For more information please see Densify and Generalize .