Hi Everbody:
I try open an attribute window for a feature layer with ArcObjects
However the attribute window open this way does not allow user to display the selected features only, nor displaying how many features are selected. user cannot select features from this attribute window. Please see the attached image for details.
How can I open a fully functional attribute window from code?
Thank you.
I try open an attribute window for a feature layer with ArcObjects
Code:
targetWindow = new TableWindowClass();
targetWindow.Layer = targetLayer;
targetWindow.Application = app;
if (!targetWindow.IsVisible)
{
targetWindow.Show(true);
}
targetWindow.TableControl.RemoveAndReloadCache();
targetWindow.Refresh();How can I open a fully functional attribute window from code?
Thank you.