How do I delete individual Tabs in ArcPro SDK?

605
1
Jump to solution
10-24-2022 01:59 PM
JohnnyHarley12
New Contributor II

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. 

Tags (4)
0 Kudos
1 Solution

Accepted Solutions
FridjofSchmidt
Occasional Contributor

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>

 

View solution in original post

1 Reply
FridjofSchmidt
Occasional Contributor

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>