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

In This Topic
    CanSortDescending Property (TableView)
    In This Topic
    Determines if the table view can sort the active field.
    Syntax
    Public ReadOnly Property CanSortDescending As Boolean
    public bool CanSortDescending {get;}
    Example
    Sort
    {
      // sort the active field descending
      if (tableView.CanSortDescending)
        tableView.SortDescending();
    
      // sort the active field ascending
      if (tableView.CanSortAscending)
        tableView.SortAscending();
    
      // perform a custom sort programmatically
      if (tableView.CanCustomSort)
      {
        // sort fields
        Dictionary<string, FieldSortInfo> dict = new()
        {
          { "STATE_NAME", FieldSortInfo.Asc },
          { "CITY_NAME", FieldSortInfo.Desc }
        };
        tableView.SortAsync(dict);
      }
    
      // perform a custom sort via the UI
      if (tableView.CanCustomSort)
        tableView.CustomSort();
    }
    Requirements

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

    ArcGIS Pro version: 3.1 or higher.
    See Also