ArcGIS Pro 3.7 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
    ReadOnly Property ActiveColumn As Field
    Field ActiveColumn {get;}
    Example
    Retrieve the values of selected cell in the attribute table
    {
        {
            if (FrameworkApplication.Panes.ActivePane is ITablePane tablePane)
            {
                var mapMember = tablePane.MapMember;
                //Get the active row's object ID from the table pane
                var oid = tablePane.ActiveObjectID;
                if (oid.HasValue && oid.Value != -1 && mapMember != null)
                {
                    //Get the field of the active column
                    var activeField = tablePane.ActiveColumn;
                    QueuedTask.Run(() =>
                    {
                        // TODO: Use core objects to retrieve record and get value
                    });
                }
            }
        }
    }
    Requirements

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

    ArcGIS Pro version: 3.0 or higher.
    See Also