ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / ITablePane Interface / ActiveColumn Property
Example

In This Topic
    ActiveColumn Property
    In This Topic
    Gets the Field of the active column in the table.
    Syntax
    Field ActiveColumn {get;}
    ReadOnly Property ActiveColumn As Field
    Example
    Retrieve the values of selected cell in the attribute table
    if (FrameworkApplication.Panes.ActivePane is ITablePane tablePane)
    {
      var mapMember = tablePane.MapMember;
      var oid = tablePane.ActiveObjectID;
      if (oid.HasValue && oid.Value != -1 && mapMember != null)
      {
        var activeField = tablePane.ActiveColumn;
        return QueuedTask.Run<object>(() =>
        {
          // TODO: Use core objects to retrieve record and get value
    
          return null;
        });
      }
    }
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also