<?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: DeveloperID for PlugIn in Navisworks API Forum</title>
    <link>https://forums.autodesk.com/t5/navisworks-api-forum/developerid-for-plugin/m-p/8924559#M3233</link>
    <description>Yes you have to decide your own 4 letters but you have the option to use a GUID instead. By using a GUID you will be more certain that others have not used the same id. As far as I know there is no central register of Autodesk developer 4 letter id, so it is safer to create a GUID&lt;BR /&gt;&lt;BR /&gt;Br&lt;BR /&gt;&lt;BR /&gt;Ulrik&lt;BR /&gt;</description>
    <pubDate>Tue, 23 Jul 2019 06:41:46 GMT</pubDate>
    <dc:creator>ulski1</dc:creator>
    <dc:date>2019-07-23T06:41:46Z</dc:date>
    <item>
      <title>DeveloperID for PlugIn</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/developerid-for-plugin/m-p/8916705#M3230</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I'm developing a PlugIn for Navisworks, but I have to start it from another application.&lt;/P&gt;&lt;P&gt;For the method call I do need a DeveloperID. Can anyone tell me where to find it or how to get it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ExecuteAddInPlugin(pluginid, parameters);&lt;/P&gt;&lt;P&gt;pluginid = name of plugin and developerID&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2019 11:22:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/developerid-for-plugin/m-p/8916705#M3230</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-18T11:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: DeveloperID for PlugIn</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/developerid-for-plugin/m-p/8924188#M3231</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous，&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;searching class &lt;STRONG&gt;AddInPluginRecord in NET help,&lt;/STRONG&gt; you will find some codes on how to dump plugins collection. It outputs the developer id, name of the plugin. for convenience, I enclosed the code here.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;   StringBuilder plugins = new StringBuilder();

         //iterate the plugins and display a list in a message box
         if (Autodesk.Navisworks.Api.Application.Plugins != null &amp;amp;&amp;amp;
            Autodesk.Navisworks.Api.Application.Plugins.PluginRecords != null)
         {
            foreach (Autodesk.Navisworks.Api.Plugins.PluginRecord pr in
               Autodesk.Navisworks.Api.Application.Plugins.PluginRecords)
            {
               //Append the plugin Information
               plugins.Append("Id = ");
               plugins.Append(pr.Id);
               plugins.Append(", Type = ");
               plugins.Append(pr.GetType().ToString());
               plugins.Append(", DeveloperId = ");
               plugins.Append(pr.DeveloperId);
               plugins.Append(", DisplayName = ");
               plugins.Append(pr.DisplayName);
               plugins.Append(", IsEnabled = ");
               plugins.Append(pr.IsEnabled);
               plugins.Append(", IsLoaded = ");
               plugins.Append(pr.IsLoaded);
               plugins.Append(", Name = ");
               plugins.Append(pr.Name);
               plugins.Append(", PluginOptions = ");
               plugins.Append(pr.PluginOptions.ToString());
               plugins.Append(", ToolTip = ");
               plugins.Append(pr.ToolTip);

               plugins.AppendLine();
            }
            //show the list of plugins
            MessageBox.Show(plugins.ToString());
         }
      }&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Jul 2019 23:08:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/developerid-for-plugin/m-p/8924188#M3231</guid>
      <dc:creator>xiaodong_liang</dc:creator>
      <dc:date>2019-07-22T23:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: DeveloperID for PlugIn</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/developerid-for-plugin/m-p/8924523#M3232</link>
      <description>&lt;P&gt;Thanks for your response. But where do I find my own developerID? or can I just simply use any 4 characters?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 06:21:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/developerid-for-plugin/m-p/8924523#M3232</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-23T06:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: DeveloperID for PlugIn</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/developerid-for-plugin/m-p/8924559#M3233</link>
      <description>Yes you have to decide your own 4 letters but you have the option to use a GUID instead. By using a GUID you will be more certain that others have not used the same id. As far as I know there is no central register of Autodesk developer 4 letter id, so it is safer to create a GUID&lt;BR /&gt;&lt;BR /&gt;Br&lt;BR /&gt;&lt;BR /&gt;Ulrik&lt;BR /&gt;</description>
      <pubDate>Tue, 23 Jul 2019 06:41:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/developerid-for-plugin/m-p/8924559#M3233</guid>
      <dc:creator>ulski1</dc:creator>
      <dc:date>2019-07-23T06:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: DeveloperID for PlugIn</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/developerid-for-plugin/m-p/8924562#M3234</link>
      <description>&lt;P&gt;thank you&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/656821"&gt;@ulski1&lt;/a&gt;. Do you know how I can create a GUID?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2019 06:43:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/developerid-for-plugin/m-p/8924562#M3234</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-23T06:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: DeveloperID for PlugIn</title>
      <link>https://forums.autodesk.com/t5/navisworks-api-forum/developerid-for-plugin/m-p/8924574#M3235</link>
      <description>In the visual studio top menu "tools" there is a built in GUID creator.&lt;BR /&gt;Br&lt;BR /&gt;Ulrik&lt;BR /&gt;</description>
      <pubDate>Tue, 23 Jul 2019 06:47:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/navisworks-api-forum/developerid-for-plugin/m-p/8924574#M3235</guid>
      <dc:creator>ulski1</dc:creator>
      <dc:date>2019-07-23T06:47:15Z</dc:date>
    </item>
  </channel>
</rss>

