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

In This Topic
    CanToggleFieldAlias Property (TableView)
    In This Topic
    Determines if the table view can toggle the field name and alias.
    Syntax
    public bool CanToggleFieldAlias {get;}
    Public ReadOnly Property CanToggleFieldAlias As Boolean
    Example
    Toggle Field Alias
    //Get the active table view.
    var tableView = TableView.Active;
    if (tableView == null)
      return;
    
    
    // set the value
    tableView.ShowFieldAlias = true;
    
    // OR toggle it
    if (tableView.CanToggleFieldAlias)
      tableView.ToggleFieldAlias();
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.1 or higher.
    See Also