ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / TableView Class / GetFields Method
Example

In This Topic
    GetFields Method (TableView)
    In This Topic
    Gets a read-only list of FieldDescription representing the columns in the table.
    Syntax

    Return Value

    A read-only list of FieldDescription.
    Example
    Field Access
    var tv = TableView.Active;
    if (tv == null)
      return;
    
    // field access
    var flds = tv.GetFields();
    var fldIdx = tv.GetFieldIndex("STATE_NAME");
    var fldDesc = tv.GetField(fldIdx);
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.1 or higher.
    See Also