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


IGeocodingProperties2.EndOffsetDistanceUnits Property (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Location > ESRI.ArcGIS.Location > Interfaces > IG > IGeocodingProperties2 Interface > IGeocodingProperties2.EndOffsetDistanceUnits Property
ArcGIS Developer Help

IGeocodingProperties2.EndOffsetDistanceUnits Property

Units used for the end offset. Use esriUnknownUnits to specify the end offset as a percentage of the segment's length.

[Visual Basic .NET]
Public Property EndOffsetDistanceUnits As esriUnits
[C#]
public esriUnits EndOffsetDistanceUnits {get; set;}
[C++]
HRESULT get_EndOffsetDistanceUnits(
  esriUnits* EndOffsetDistanceUnits
);
[C++]
HRESULT put_EndOffsetDistanceUnits(
  esriUnits EndOffsetDistanceUnits
);
[C++]
Parameters
EndOffsetDistanceUnits [out, retval]

EndOffsetDistanceUnits is a parameter of type esriUnits* EndOffsetDistanceUnits [in]
EndOffsetDistanceUnits is a parameter of type esriUnits

Product Availability

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

Remarks

Locators that use polyline features as reference data interpolate positions along reference data features for geocoded addresses. For those locators, you can specify an end offset using the EndOffsetDistance property, which specifies by what amount to offset geocoded locations from the end of reference data features. The EndOffsetDistanceUnits property specifies the units for the end offset.

You can use these properties prevent features that are located at the end of a reference data feature from falling on top of other features (for example, a cross street). By default, the value of the EndOffsetDistanceUnits property is esriUnknownUnits, which indicates to use the reference data�s units.

See Also

IGeocodingProperties2 Interface