ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / TableView Class / FindAndReplace Method
Example

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