ArcObjects Library Reference (Geometry)  

IPolyline3.TouchCut Method

Cut a polyline at locations where the cutter only touches the polyline, in addition to locations where the cutter crosses it.

[Visual Basic .NET]
Public Sub TouchCut ( _
    ByVal pCutter As IPolyline, _
    ByRef ppLeftGeom As IGeometry, _
    ByRef ppRightGeom As IGeometry _
)
[C#]
public void TouchCut (
    IPolyline pCutter,
    ref IGeometry ppLeftGeom,
    ref IGeometry ppRightGeom
);
[C++]
HRESULT TouchCut(
  IPolyline* pCutter,
  IGeometry** ppLeftGeom,
  IGeometry** ppRightGeom
);
[C++]

Parameters

pCutter [in]

  pCutter is a parameter of type IPolyline

ppLeftGeom [out]

  ppLeftGeom is a parameter of type IGeometry

ppRightGeom [out]

  ppRightGeom is a parameter of type IGeometry

Product Availability

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

Description

Use the TouchCut method if the polyline has to be cut even if the cutter is only touching (End points on the interior of other geometry) the polyline. ITopologicalOperator::Cut would cut the polyline only if the cutter crosses it.

See Also

IPolyline3 Interface