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

In This Topic
    CanFind Property (TableView)
    In This Topic
    Determines if the table view can display the Find control.
    Syntax
    Public ReadOnly Property CanFind As Boolean
    public bool CanFind {get;}
    Example
    Find and Replace
    {
      // launch the find UI
      if (tableView.CanFind)
        tableView.Find();
    
      // or launch the find and replace UI
      if (tableView.CanFindAndReplace)
        tableView.FindAndReplace();
    }
    Requirements

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

    ArcGIS Pro version: 3.1 or higher.
    See Also