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

In This Topic
    CanToggleSubtypeDomainDescriptions Property (TableView)
    In This Topic
    Determines if the table view can toggle between the subtype and domain descriptions and codes
    Syntax
    Public ReadOnly Property CanToggleSubtypeDomainDescriptions As Boolean
    public bool CanToggleSubtypeDomainDescriptions {get;}
    Example
    Toggle Subtype Descriptions
    {
      // set the value
      tableView.ShowSubtypeDomainDescriptions = true;
    
      // OR toggle it
      if (tableView.CanToggleSubtypeDomainDescriptions)
        tableView.ToggleSubtypeDomainDescriptionsAsync();
    }
    Requirements

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

    ArcGIS Pro version: 3.1 or higher.
    See Also