TableView tv = null; // find all the table panes (table panes hosting map data) var tablePanes = FrameworkApplication.Panes.OfType<ITablePane>(); var tablePane = tablePanes.FirstOrDefault(p => (p as ITablePaneEx)?.Caption == "caption"); var tablePaneEx = tablePane as ITablePaneEx; if (tablePaneEx != null) tv = tablePaneEx.TableView; // if it's not found, maybe it's an external table pane if (tv == 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) tv = externalTablePane.TableView; }
Target Platforms: Windows 11, Windows 10