ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / TableView Class / ToggleSubtypeDomainDescriptionsAsync Method
Example

In This Topic
    ToggleSubtypeDomainDescriptionsAsync Method (TableView)
    In This Topic
    Toggles between the subtype and domain descriptions and codes in the columns of the table view.
    Syntax
    Public Function ToggleSubtypeDomainDescriptionsAsync() As Task
    public Task ToggleSubtypeDomainDescriptionsAsync()
    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