ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / TableView Class / CanShowAllFields Property
Example

In This Topic
    CanShowAllFields Property (TableView)
    In This Topic
    Determines if the table view can show all fields.
    Syntax
    public bool CanShowAllFields {get;}
    Public ReadOnly Property CanShowAllFields As Boolean
    Example
    Show or Hide Fields
    var tv = TableView.Active;
    if (tv == null)
      return;
    
    // get list of hidden fields
    var hiddenFields = tv.GetHiddenFields();
    
    
    // show all fields
    if (tv.CanShowAllFields)
      tv.ShowAllFields();
    
    
    
    // hide only "CITY_FIPS", "STATE_FIPS"
    if (tv.CanShowAllFields)
    {
      // show all fields
      tv.ShowAllFields();
      tv.SetHiddenFields(new List<string> { "CITY_FIPS", "STATE_FIPS" });
    }
    
    
    
    // add "STATE_NAME to set of hidden fields
    tv.SetHiddenFields(new List<string> { "STATE_NAME" });
    
    
    // hide selected fields
    if (tv.CanHideSelectedFields)
      tv.HideSelectedFields();
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.1 or higher.
    See Also