ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.CIM Namespace / CIMBasicFeatureLayer Class / FeatureTable Property
Example

In This Topic
    FeatureTable Property (CIMBasicFeatureLayer)
    In This Topic
    Gets or sets the feature table.
    Syntax
    public CIMFeatureTable FeatureTable {get; set;}
    Public Property FeatureTable As CIMFeatureTable
    Example
    Access the display field for a layer
    var featureLayer = MapView.Active.Map.GetLayersAsFlattenedList().OfType<FeatureLayer>().FirstOrDefault();
    ArcGIS.Desktop.Framework.Threading.Tasks.QueuedTask.Run(() =>
    {
      // get the CIM definition from the layer
      var cimFeatureDefinition = featureLayer.GetDefinition() as ArcGIS.Core.CIM.CIMBasicFeatureLayer;
      // get the view of the source table underlying the layer
      var cimDisplayTable = cimFeatureDefinition.FeatureTable;
      // this field is used as the 'label' to represent the row
      var displayField = cimDisplayTable.DisplayField;
    });
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also