Hello, I would like to condense the tab list on my ArcPro instance on startup. I would like to totally delete the Imagery and Analysis tab from Pro for certain people. Is there any documentation on how to delete a whole tab? I have seen subgroups and buttons in the documentation but never referencing entire tabs.
Solved! Go to Solution.
You can use the deleteTab tag inside an updateModule tag in your Config.daml file:
<modules>
<updateModule refID="esri_editing_EditingModule">
<tabs>
<deleteTab refID="esri_editing_EditingTab" />
</tabs>
</updateModule>
</modules>
You can use the deleteTab tag inside an updateModule tag in your Config.daml file:
<modules>
<updateModule refID="esri_editing_EditingModule">
<tabs>
<deleteTab refID="esri_editing_EditingTab" />
</tabs>
</updateModule>
</modules>