ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.Data.Parcels Namespace / ParcelFabric Class / GetParcelTypeInfo Method
Example

In This Topic
    GetParcelTypeInfo Method
    In This Topic
    Returns all parcel type names, related feature classes and administration type. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    public IReadOnlyList<ParcelTypeInfo> GetParcelTypeInfo()
    Public Function GetParcelTypeInfo() As IReadOnlyList(Of ParcelTypeInfo)

    Return Value

    An IEnumerable of ParcelTypeInfo.
    Exceptions
    ExceptionDescription
    A geodatabase-related exception has occurred.
    This method or property must be called within the lambda passed to QueuedTask.Run.
    Example
    Get parcel type feature classes from the parcel fabric dataset
    string errorMessage = await QueuedTask.Run(() =>
    {
      try
      {
        var myParcelFabricLayer = MapView.Active.Map.GetLayersAsFlattenedList().OfType<ParcelLayer>().FirstOrDefault();
        //if there is no fabric in the map then bail
        if (myParcelFabricLayer == null)
          return "There is no fabric in the map.";
        string myParcelTypeName = "Tax";
        var myParcelFabricDataset = myParcelFabricLayer.GetParcelFabric();
        var typeInfo = myParcelFabricDataset.GetParcelTypeInfo();
        FeatureClass lineFCType = null;
        FeatureClass polyFCType = null;
        foreach (var info in typeInfo)
        {
          if (info.Name.ToLower() == myParcelTypeName.ToLower())
          {
            lineFCType = info.LineFeatureTable as FeatureClass;
            polyFCType = info.PolygonFeatureTable as FeatureClass;
            break;
          }
        }
      }
      catch (Exception ex)
      {
        return ex.Message;
      }
      return "";
    });
    if (!string.IsNullOrEmpty(errorMessage))
      MessageBox.Show(errorMessage, "Get Parcel Type feature classes.");
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also