ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / TableView Class / ShowFieldAlias Property
Example

In This Topic
    ShowFieldAlias Property (TableView)
    In This Topic
    Gets and sets the current state of displaying the field alias.
    Syntax
    Public Property ShowFieldAlias As Boolean
    public bool ShowFieldAlias {get; set;}
    Example
    Toggle Field Alias
    {
      // set the value
      tableView.ShowFieldAlias = true;
    
      // OR toggle it
      if (tableView.CanToggleFieldAlias)
        tableView.ToggleFieldAlias();
    }
    Requirements

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

    ArcGIS Pro version: 3.1 or higher.
    See Also