ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / TableView Class / GetFrozenFields Method
Example

In This Topic
    GetFrozenFields Method (TableView)
    In This Topic
    Gets the set of frozen fields in the table view.
    Syntax
    Public Function GetFrozenFields() As IReadOnlyList(Of String)
    public IReadOnlyList<string> GetFrozenFields()
    Example
    Freeze Fields
    {
      // get list of frozen fields
      var frozenfields = tableView.GetFrozenFields();
    
      // unfreeze all fields
      tableView.ClearAllFrozenFieldsAsync();
    
      // freeze a set of fields
      tableView.SetFrozenFieldsAsync(["CITY_FIPS", "STATE_FIPS"]);
    }
    Requirements

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

    ArcGIS Pro version: 3.1 or higher.
    See Also