ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.CIM Namespace / CIMFeatureTable Class
Members Example

In This Topic
    CIMFeatureTable Class
    In This Topic
    Represents a feature table.
    Object Model
    CIMFeatureTable ClassCIMFeatureTable ClassCIMDataConnection ClassCIMExpressionInfo ClassCIMFloorAwareTableProperties ClassCIMFormInfo ClassCIMFeatureTable ClassEnvelope ClassCIMTimeDataDefinition ClassCIMTimeDimensionDefinition ClassCIMTimeDisplayDefinition ClassCIMTimeTableDefinition Class
    Syntax
    Example
    Access the display field for a layer
    {
        // get the CIM definition from the layer
        // Note: needs to be called on the MCT
        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;
    }
    Inheritance Hierarchy

    System.Object
       ArcGIS.Core.CIM.CIMObject
          ArcGIS.Core.CIM.CIMDisplayTable
             ArcGIS.Core.CIM.CIMFeatureTable

    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also