ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / ParcelFabricType Enumeration
Example Example

In This Topic
    ParcelFabricType Enumeration
    In This Topic
    The Parcel Fabric model type as defined by the era of ArcGIS software that supports it.
    Syntax
    Members
    MemberDescription
    ParcelFabricParcel fabric for ArcGIS Pro
    ParcelFabricForArcMapParcel fabric for ArcMap.
    Example
    Check if layer is controlled by parcel fabric
    var layer = map.GetLayersAsFlattenedList().OfType<FeatureLayer>().FirstOrDefault(l => l.Name == "Records");
    bool isProFabric = await layer.IsControlledByParcelFabricAsync(ParcelFabricType.ParcelFabric);
    bool isArcMapFabric = await layer.IsControlledByParcelFabricAsync(ParcelFabricType.ParcelFabricForArcMap);
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ArcGIS.Desktop.Mapping.ParcelFabricType

    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also