ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / TableView Class / ShowSubtypeDomainDescriptions Property
Example

In This Topic
    ShowSubtypeDomainDescriptions Property (TableView)
    In This Topic
    Gets and sets the current state of displaying subtype and domain descriptions.
    Syntax
    public bool ShowSubtypeDomainDescriptions {get; set;}
    Public Property ShowSubtypeDomainDescriptions As Boolean
    Example
    Toggle Subtype Descriptions
    //Get the active table view.
    var tableView = TableView.Active;
    if (tableView == null)
      return;
    
    
    // set the value
    tableView.ShowSubtypeDomainDescriptions = true;
    
    // OR toggle it
    if (tableView.CanToggleSubtypeDomainDescriptions)
      tableView.ToggleSubtypeDomainDescriptionsAsync();
    
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.1 or higher.
    See Also