ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.Geometry Namespace / NonSimpleReason Enumeration

In This Topic
    NonSimpleReason Enumeration
    In This Topic
    Specifies the reason that a non-simple geometry is non-simple. Returned from GeometryEngine.GetNonSimpleReason. See SimplifyAsFeature and IsSimpleAsFeature Wiki page.
    Syntax
    Members
    MemberDescription
    DiscontinuousParts The geometry contains discontinuous parts.
    DuplicateVertex The geometry has one or more duplicate vertices.
    EmptyPart The geometry contains an empty part.
    EmptyZValues The geometry is z-aware, but one or more z-values are NaN.
    IsSimple The geometry is simple. Applies to all geometry types.
    MismatchedAttributes The geometry has mismatched attributes. All of the points must have the same attribute awareness. For example, if one point is z-aware and another point is not, then it has mismatched attributes.
    RingOrientation The rings of a polygon are oriented incorrectly. Exterior rings must be oriented clockwise, and interior rings must be oriented counterclockwise.
    SegmentOrientation Individual segments are not consistently oriented. The end point of segment(i) must be the same as the start point of segment(i + 1).
    SelfIntersections A path or ring intersects itself or other parts.
    ShortSegments Some segments are shorter than allowed by the system units of the spatial reference associated with the geometry.
    UnclosedRing A ring in a polygon is not closed. The end point of the last segment in a ring must be equal to the start point of the first segment in that ring.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ArcGIS.Core.Geometry.NonSimpleReason

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.2 or higher.
    See Also