ArcObjects Library Reference (Location)  

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