ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / IExternalTablePane Interface
Members Example

In This Topic
    IExternalTablePane Interface
    In This Topic
    Represents a pane which contains a table view populated with data from an Item within a geodatabase.
    Object Model
    IExternalTablePane InterfaceTableView ClassCIMExternalTableView Class
    Syntax
    Public Interface IExternalTablePane 
    public interface IExternalTablePane 
    Example
    Change table View caption
    {
      // find all the table panes (table panes hosting map data)
      var tablePanes = FrameworkApplication.Panes.OfType<ITablePane>();
      var tablePane = tablePanes.FirstOrDefault(p => p is ITablePaneEx { Caption: "oldCaption" });
      if (tablePane is ITablePaneEx tablePaneEx)
        tablePaneEx.Caption = "newCaption";
    
      // find all the external table panes (table panes hosting external data)
      var externalPanes = FrameworkApplication.Panes.OfType<IExternalTablePane>();
      var externalTablePane = externalPanes.FirstOrDefault(p => p.Caption == "oldCaption");
      if (externalTablePane != null)
        externalTablePane.Caption = "newCaption";
    }
    Get TableView from table pane
    {
      // find all the table panes (table panes hosting map data)
      var tablePanes = FrameworkApplication.Panes.OfType<ITablePane>();
      var tablePane = tablePanes.FirstOrDefault(p => p is ITablePaneEx { Caption: "caption" });
      if (tablePane is ITablePaneEx tablePaneEx)
        tableView = tablePaneEx.TableView;
    
      // if it's not found, maybe it's an external table pane
      if (tableView == null)
      {
        // find all the external table panes (table panes hosting external data)
        var externalPanes = FrameworkApplication.Panes.OfType<IExternalTablePane>();
        var externalTablePane = externalPanes.FirstOrDefault(p => p.Caption == "caption");
        if (externalTablePane != null)
          tableView = externalTablePane.TableView;
      }
    }
    Requirements

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

    ArcGIS Pro version: 3.1 or higher.
    See Also