Hi,
I have a use case where I will have a list of layers for which I want to open the attribute table after those layers have already been added to the active map.
foreach (var layer in attributeTableLayers)
{
FrameworkApplication.Panes.OpenTablePane(layer, TableViewMode.eAllRecords);
}
The first layer's attribute table is opened but for the next, an exception is occurring
System.InvalidOperationException: 'The map viewer is not initialized.'
What is the best way to open attribute tables for multiple layers back-to-back?
@GKmieliauskas @Wolf @CharlesMacleod