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

In This Topic
    Find Method (TableView)
    In This Topic
    Shows the Find control.
    Syntax
    Public Sub Find() 
    public void Find()
    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