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

In This Topic
    CanFindAndReplace Property (TableView)
    In This Topic
    Determines if the table view can display the Find and replace control.
    Syntax
    Public ReadOnly Property CanFindAndReplace As Boolean
    public bool CanFindAndReplace {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