ArcGIS Pro 3.4 API Reference Guide
ArcGIS.Core.Geometry Namespace / IGeometryEngine Interface / Cut Method / Cut(Multipart,Polyline,Boolean) Method
The polygon or polyline to cut.
The cutting polyline.
Indicates whether to consider a touch event to be a cut. It applies only when the cuttee is a polyline.

In This Topic
    Cut(Multipart,Polyline,Boolean) Method
    In This Topic
    Splits this geometry into parts.
    Syntax

    Parameters

    multipart
    The polygon or polyline to cut.
    cutter
    The cutting polyline.
    considerTouch
    Indicates whether to consider a touch event to be a cut. It applies only when the cuttee is a polyline.

    Return Value

    An IReadOnlyList<Geometry> representing the cut geometries. If the cutter or cuttee is empty, then an empty list is returned. If there are no cuts, then an empty list is returned. If the left cut doesn't exist, then the first geometry will be empty. Similarly, if the right cut doesn't exist, the second geometry will be empty. An undefined cut will be produced only if a left or right cut exists and there is a part leftover.
    Exceptions
    ExceptionDescription
    Either cuttee or cutter or both are null.
    The method is not implemented for GeometryBag.
    Incompatible spatial references between the input geometries.
    Remarks
    When a polyline/polygon is cut, it is split where it intersects the cutter polyline. For polylines, all left cuts will be grouped together in the first polyline, right cuts and coincident cuts will be grouped together in the second polyline, and each undefined cut and any uncut parts are output as separate polylines. For polygons, all left cuts are grouped together in the first polygon, all right cuts are grouped together in the second polygon, and each undefined cut and any uncut parts are output as separate polygons. See Cut operation Pro Concepts topic for more information.

    GeometryEngine Cut

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.4 or higher.
    See Also