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


IGeometryEnvironment2.DeviationAutoDensifyTolerance Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geometry > ESRI.ArcGIS.Geometry > Interfaces > IG > IGeometryEnvironment2 Interface > IGeometryEnvironment2.DeviationAutoDensifyTolerance Property
ArcGIS Developer Help

IGeometryEnvironment2.DeviationAutoDensifyTolerance Property

The default deviation distance to be used for curve segment densification.

[Visual Basic .NET]
Public Property DeviationAutoDensifyTolerance As Double
[C#]
public double DeviationAutoDensifyTolerance {get; set;}
[C++]
HRESULT get_DeviationAutoDensifyTolerance(
  double tolerance
);
[C++]
HRESULT put_DeviationAutoDensifyTolerance(
  System.Double* tolerance
);
[C++]
Parameters
tolerance 

tolerance is a parameter of type double tolerance [out, retval]
tolerance is a parameter of type double*

Product Availability

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

Description

The DeviationAutoDensify controls the Densification factor use when performing automatic densification in ArcGIS. The automatic densification is used when exporting a feature class containing non-linear segments (CircularArc, EllipticArc, BezierCurve) to other file that don�t support non-linear segments. For example, when exporting to shapefile this parameter is used.

Remarks

Note : The number used here is the actual MaxDeviation. (see IPolycurve::Densify for more details)

See Also

IGeometryEnvironment2 Interface