<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to change the caption of my tab and group through MainModule? in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-the-caption-of-my-tab-and-group/m-p/1360479#M10861</link>
    <description>&lt;P&gt;Yes, I try with and without the last parameter true, but both don't work. What I find strange is that it works for button and gallery.&lt;/P&gt;</description>
    <pubDate>Wed, 13 Dec 2023 18:13:14 GMT</pubDate>
    <dc:creator>AtilaBK</dc:creator>
    <dc:date>2023-12-13T18:13:14Z</dc:date>
    <item>
      <title>How to change the caption of my tab and group through MainModule?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-the-caption-of-my-tab-and-group/m-p/1360303#M10852</link>
      <description>&lt;P&gt;I am changing my Caption from my buttons by the MainModule class using "FrameworkApplication.GetPlugInWrapper" and it seems to work well, but when I try to change the Caption from my tab or&amp;nbsp;group, the update seems not to work, can someone help?&lt;/P&gt;&lt;P&gt;var tab = FrameworkApplication.GetPlugInWrapper("ID_MyTab", false);&lt;BR /&gt;tab.Caption = "new caption tab";&lt;/P&gt;&lt;P&gt;var grupo = FrameworkApplication.GetPlugInWrapper("ID_MyGrou", false);&lt;BR /&gt;grupo.Caption = "new caption group";&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 15:34:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-the-caption-of-my-tab-and-group/m-p/1360303#M10852</guid>
      <dc:creator>AtilaBK</dc:creator>
      <dc:date>2023-12-13T15:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the caption of my tab and group through MainModule?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-the-caption-of-my-tab-and-group/m-p/1360326#M10855</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can change tab or group names directly in daml. Tabs and groups have "caption" attribute.&lt;/P&gt;&lt;P&gt;What is the reason to change them from code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;&amp;lt;tabs&amp;gt;
&amp;lt;tab id="ApplySymbology_Tab1" caption="New Tab"&amp;gt;
          &amp;lt;group refID="ApplySymbology_Group1"/&amp;gt;
        &amp;lt;/tab&amp;gt;
&amp;lt;/tabs&amp;gt;
&amp;lt;groups&amp;gt;
    &amp;lt;group id="ApplySymbology_Group1" caption="Group 1" appearsOnAddInTab="true" keytip="G1"&amp;gt;
      &amp;lt;button refID="ApplySymbology_ApplySymbButton" size="large" /&amp;gt; 
    &amp;lt;/group&amp;gt;
&amp;lt;/groups&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 16:00:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-the-caption-of-my-tab-and-group/m-p/1360326#M10855</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2023-12-13T16:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the caption of my tab and group through MainModule?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-the-caption-of-my-tab-and-group/m-p/1360428#M10858</link>
      <description>&lt;P&gt;Hi, the name has to be defined by api response, which I only have in the end of&amp;nbsp;the Initialize (mainModule).&lt;/P&gt;&lt;P&gt;In this case, the "labels" are defined in the database and I access this db by API.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 17:26:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-the-caption-of-my-tab-and-group/m-p/1360428#M10858</guid>
      <dc:creator>AtilaBK</dc:creator>
      <dc:date>2023-12-13T17:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the caption of my tab and group through MainModule?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-the-caption-of-my-tab-and-group/m-p/1360467#M10860</link>
      <description>&lt;P&gt;Have you tried to pass "true" for second parameter in&amp;nbsp;&lt;SPAN&gt;FrameworkApplication.GetPlugInWrapper?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;On startup your tab or group could be not created.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 18:02:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-the-caption-of-my-tab-and-group/m-p/1360467#M10860</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2023-12-13T18:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the caption of my tab and group through MainModule?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-the-caption-of-my-tab-and-group/m-p/1360479#M10861</link>
      <description>&lt;P&gt;Yes, I try with and without the last parameter true, but both don't work. What I find strange is that it works for button and gallery.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 18:13:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-the-caption-of-my-tab-and-group/m-p/1360479#M10861</guid>
      <dc:creator>AtilaBK</dc:creator>
      <dc:date>2023-12-13T18:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to change the caption of my tab and group through MainModule?</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-the-caption-of-my-tab-and-group/m-p/1360743#M10863</link>
      <description>&lt;P&gt;On ArcGIS Pro 3.1 renaming of Group is working fine. I rename it in module overridden Initialize() method.&lt;/P&gt;&lt;P&gt;I have found that&amp;nbsp;FrameworkApplication.GetPlugInWrapper method in both cases returns invalid CommandType property. It returns Button, but it must return Tab and Group&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic10078.html" target="_blank"&gt;CommandType Enumeration—ArcGIS Pro&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Dec 2023 07:06:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-change-the-caption-of-my-tab-and-group/m-p/1360743#M10863</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2023-12-14T07:06:31Z</dc:date>
    </item>
  </channel>
</rss>

