<?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 is it possible to get Archicad Icons? in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/is-it-possible-to-get-Archicad-Icons/m-p/374442#M769</link>
    <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I'm currently programming a palette for Archicad, that can alter Parameters of an Object. For better readability I would like to use Archicads default Plugins to visualize certain parameters like e.g. the height of an object above floor- or sea-level or the&amp;nbsp;sill height of a window (See pictures).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ArchicadIcons.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/35480i43A24A212A91CE9D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ArchicadIcons.png" alt="ArchicadIcons.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I already know that I can get some Icons like the Wall- or Window-Icon in the Devkit. Is there a way to get the other Icons mentioned above?&lt;/P&gt;&lt;P&gt;Thank You for helping out!&lt;/P&gt;&lt;P&gt;Vincent Schmitt&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
    <pubDate>Mon, 27 Mar 2023 13:07:39 GMT</pubDate>
    <dc:creator>Vincent Schmitt BIMm</dc:creator>
    <dc:date>2023-03-27T13:07:39Z</dc:date>
    <item>
      <title>is it possible to get Archicad Icons?</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/is-it-possible-to-get-Archicad-Icons/m-p/374442#M769</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I'm currently programming a palette for Archicad, that can alter Parameters of an Object. For better readability I would like to use Archicads default Plugins to visualize certain parameters like e.g. the height of an object above floor- or sea-level or the&amp;nbsp;sill height of a window (See pictures).&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ArchicadIcons.png" style="width: 400px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/35480i43A24A212A91CE9D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ArchicadIcons.png" alt="ArchicadIcons.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I already know that I can get some Icons like the Wall- or Window-Icon in the Devkit. Is there a way to get the other Icons mentioned above?&lt;/P&gt;&lt;P&gt;Thank You for helping out!&lt;/P&gt;&lt;P&gt;Vincent Schmitt&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 13:07:39 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/is-it-possible-to-get-Archicad-Icons/m-p/374442#M769</guid>
      <dc:creator>Vincent Schmitt BIMm</dc:creator>
      <dc:date>2023-03-27T13:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: is it possible to get Archicad Icons?</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/is-it-possible-to-get-Archicad-Icons/m-p/374482#M770</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/35239"&gt;@Vincent Schmitt BIMm&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On Mac, there are plenty of .tiff images in Graphisoft/Archicad &amp;lt;XX&amp;gt;/Archicad &amp;lt;XX&amp;gt;/Contents/Ressources/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are thousands of icons in that folder so you may find what you need there.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 14:39:54 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/is-it-possible-to-get-Archicad-Icons/m-p/374482#M770</guid>
      <dc:creator>MF BIM</dc:creator>
      <dc:date>2023-03-27T14:39:54Z</dc:date>
    </item>
    <item>
      <title>Re: is it possible to get Archicad Icons?</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/is-it-possible-to-get-Archicad-Icons/m-p/375022#M771</link>
      <description>&lt;P&gt;Icons can be set on dialog elements usually with the SetIcon member function and a DG::Icon parameter. The DG::Icon has multiple constructors, one of them is the&lt;BR /&gt;DG::Icon (GSResModule resModule, short resId);&lt;BR /&gt;If you specify the resource module and the icon identifier then the icon can be loaded.&lt;BR /&gt;&lt;BR /&gt;Those icons mentioned above are located in the ArchiCAD.exe file. If you know the icon identifier you can load the icon by using the resource module identifier returned by the RSGetApplicationResModule () function call.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;#include "RS.hpp"&lt;/P&gt;
&lt;P&gt;DG::Icon icn (RSGetApplicationResModule (), iconId);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Finding the icon identifier is tricky as one need to examine the resources with the Visual Studio resource editor.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2023 08:41:34 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/is-it-possible-to-get-Archicad-Icons/m-p/375022#M771</guid>
      <dc:creator>Miklos Vegh</dc:creator>
      <dc:date>2023-04-03T08:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: is it possible to get Archicad Icons?</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/is-it-possible-to-get-Archicad-Icons/m-p/375541#M772</link>
      <description>&lt;P&gt;Ok thank you both! I have already found the Icons, but I will have a look if I can find them with the resource editor, as it would be easier to use them.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 06:07:14 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/is-it-possible-to-get-Archicad-Icons/m-p/375541#M772</guid>
      <dc:creator>Vincent Schmitt BIMm</dc:creator>
      <dc:date>2023-04-05T06:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: is it possible to get Archicad Icons?</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/is-it-possible-to-get-Archicad-Icons/m-p/375549#M773</link>
      <description>&lt;P&gt;In the VS resource editor you find the images with name in the form of I&amp;lt;iconId&amp;gt;&amp;amp;&amp;lt;dpi&amp;gt; like I9200&amp;amp;192. Here the icon Id is 9200.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 06:53:55 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/is-it-possible-to-get-Archicad-Icons/m-p/375549#M773</guid>
      <dc:creator>Miklos Vegh</dc:creator>
      <dc:date>2023-04-05T06:53:55Z</dc:date>
    </item>
  </channel>
</rss>

