ArcGIS Pro 3.3 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 void Find()
    Public Sub Find() 
    Example
    Find and Replace
    var tv = TableView.Active;
    if (tv == null)
      return;
    
    // launch the find UI
    if (tv.CanFind)
      tv.Find();
    
    
    // or launch the find and replace UI
    if (tv.CanFindAndReplace)
      tv.FindAndReplace();
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.1 or higher.
    See Also