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


IEdgeMatch.Init Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > EditorExt > ESRI.ArcGIS.EditorExt > Interfaces > IE > IEdgeMatch Interface > IEdgeMatch.Init Method
ArcGIS Developer Help

IEdgeMatch.Init Method

The source and destination feature classes.

[Visual Basic .NET]
Public Sub Init ( _
    ByVal src As IFeatureClass, _
    ByVal dest As IFeatureClass, _
    ByVal tolerance As Double, _
    ByVal FieldMap As IFieldMap, _
    ByVal hitType As esriGeometryHitPartType, _
    ByVal OneLinkPerToPoint As Boolean _
)
[C#]
public void Init (
    IFeatureClass src,
    IFeatureClass dest,
    double tolerance,
    IFieldMap FieldMap,
    esriGeometryHitPartType hitType,
    bool OneLinkPerToPoint
);

Product Availability

Available with ArcGIS Desktop.

Description

The init method sets up the edgematch tool environment.

This includes the source and destination feature classes, the tolerance (distance between features, which is set to the snap tolerance by default) and a fieldmap (where applicable) if attribute matching is to be used.

See Also

IEdgeMatch Interface