ArcObjects Library Reference (GeoDatabase)  

IFeatureConstruction.PlanarizeLines Method

Replaces the line selection set with a planarized version of it. Assumes all lines are from same feature class.

[Visual Basic .NET]
Public Sub PlanarizeLines ( _
    ByVal cancel As ICancelOperation, _
    ByVal enumFeature As IEnumFeature, _
    ByVal ClusterTolerance As Double _
)
[C#]
public void PlanarizeLines (
    ICancelOperation cancel,
    IEnumFeature enumFeature,
    double ClusterTolerance
);
[C++]
HRESULT PlanarizeLines(
  ICancelOperation* cancel,
  IEnumFeature* enumFeature,
  double ClusterTolerance
);
[C++]

Parameters

cancel

  cancel is a parameter of type ICancelOperation

enumFeature

  enumFeature is a parameter of type IEnumFeature

ClusterTolerance   ClusterTolerance is a parameter of type double

Product Availability

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

Remarks

This method is similar to ConstructLines in the case where the target feature class contains all the features in the enumerator. Existing features in the feature class are replaced by the planarized versions. Feature attributes are transferred.

See Also

IFeatureConstruction Interface