<?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: Wall Tool from favorite in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292076#M2693</link>
    <description>&lt;BLOCKQUOTE&gt;dushyant wrote:&lt;BR /&gt;Not able to get the guid of a favorite like this:
&lt;PRE&gt;API_Favorite    favorite (favName);&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;
That's the default constructor for &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;API_Favorite&lt;E&gt;&lt;/E&gt; - so all that code does is construct a new instance with the name you specified. The other data will all be empty.&lt;BR /&gt;
&lt;BR /&gt;
I think you want to call a function to look up a favorite by name, e.g. &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Favorite_Get&lt;E&gt;&lt;/E&gt;.</description>
    <pubDate>Fri, 07 Feb 2020 10:07:50 GMT</pubDate>
    <dc:creator>Ralph Wessel</dc:creator>
    <dc:date>2020-02-07T10:07:50Z</dc:date>
    <item>
      <title>Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292059#M2676</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;Hello,&lt;BR /&gt;Is there a way to activate the wall tool for drawing the wall, with a particular favorite wall’s settings? I can place a favorite wall with begC and endC. But I need the wall tool to get activated with the favorite’s settings applied &amp;amp; ready to draw. &lt;BR /&gt;&lt;BR /&gt;Basically from the menu: Design &amp;gt; Design Tools &amp;gt; Wall , should get activated and instead of Default Settings, it should be ready with the settings of a particular favorite wall.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Dushyant&lt;/DIV&gt;</description>
      <pubDate>Tue, 04 Oct 2022 14:23:19 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292059#M2676</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2022-10-04T14:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292060#M2677</link>
      <description>How about using &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Element_ChangeDefaults&lt;E&gt;&lt;/E&gt; to apply the favorite setings to the tool defaults? And &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;APIEnv_SetToolBoxModeID&lt;E&gt;&lt;/E&gt; can be used to make the tool active.</description>
      <pubDate>Tue, 04 Feb 2020 10:41:35 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292060#M2677</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2020-02-04T10:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292061#M2678</link>
      <description>Thanks Ralph, I will try and work with those.</description>
      <pubDate>Tue, 04 Feb 2020 11:13:11 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292061#M2678</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2020-02-04T11:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292062#M2679</link>
      <description>I am now able to set the current tool to Wall tool. However, I don’t know what to set for the ‘mask’ part of: &lt;BR /&gt;
GSErrCode  ACAPI_Element_ChangeDefaults (&lt;BR /&gt;
	API_Element*           element,&lt;BR /&gt;
	API_ElementMemo*       memo,&lt;BR /&gt;
	const API_Element*     mask&lt;BR /&gt;
);&lt;BR /&gt;
&lt;BR /&gt;
Code snippet:
&lt;PRE&gt;API_Favorite    favorite (favName);
favorite.memo.New ();
API_Element&amp;amp; favElement = favorite.element;
API_ElementMemo&amp;amp; favMemo = favorite.memo.Get();
ACAPI_Element_ChangeDefaults(&amp;amp;favElement, &amp;amp;favMemo, &lt;FONT color="#FF4000"&gt;&amp;lt;MASK?&amp;gt;&lt;/FONT&gt;);&lt;/PRE&gt;

Thanks,&lt;BR /&gt;
Dushyant</description>
      <pubDate>Tue, 04 Feb 2020 12:29:22 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292062#M2679</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2020-02-04T12:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292063#M2680</link>
      <description>Try using this: &lt;PRE&gt;	API_Element mask;
	ACAPI_ELEMENT_MASK_SETFULL(mask);&lt;/PRE&gt;

…and use &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;mask&lt;E&gt;&lt;/E&gt; in your call to &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Element_ChangeDefaults&lt;E&gt;&lt;/E&gt;. That will cause everything in the favorite to be applied to the default settings.</description>
      <pubDate>Tue, 04 Feb 2020 12:55:04 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292063#M2680</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2020-02-04T12:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292064#M2681</link>
      <description>Hi Ralph,&lt;BR /&gt;
Thanks. Just wondering, how would an API_Element mask set the properties of my favorite element when it is not linked to the favorite? Or how does it fetch the properties of the favorite?&lt;BR /&gt;
&lt;BR /&gt;
Dushyant</description>
      <pubDate>Tue, 04 Feb 2020 12:59:35 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292064#M2681</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2020-02-04T12:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292065#M2682</link>
      <description>Ralph,&lt;BR /&gt;
I tried:
&lt;PRE&gt;API_Element mask;
ACAPI_ELEMENT_MASK_SETFULL(mask);
&lt;/PRE&gt;
It does change the default settings as per the Favorite set in code, except for the Classification..&lt;BR /&gt;
&lt;BR /&gt;
Does something else need to be done to change the classification as per the Favorite?&lt;BR /&gt;
&lt;BR /&gt;
Dushyant</description>
      <pubDate>Tue, 04 Feb 2020 13:07:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292065#M2682</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2020-02-04T13:07:20Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292066#M2683</link>
      <description>The mask is just a filter that allows you to define which values you want to change. In this case I assume you want to apply all the settings from the favorite, which is achieved with the macro &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_ELEMENT_MASK_SETFULL&lt;E&gt;&lt;/E&gt;&lt;BR /&gt;
&lt;BR /&gt;
A description of this macro and the application of masks is available in the API document if you need more detail.</description>
      <pubDate>Tue, 04 Feb 2020 13:10:17 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292066#M2683</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2020-02-04T13:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292067#M2684</link>
      <description>Okay, thanks a lot!</description>
      <pubDate>Tue, 04 Feb 2020 13:12:49 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292067#M2684</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2020-02-04T13:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292068#M2685</link>
      <description>Any idea why the Classification is not getting set to that of the Favorite? (It's not changing at all)</description>
      <pubDate>Tue, 04 Feb 2020 13:20:29 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292068#M2685</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2020-02-04T13:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292069#M2686</link>
      <description>&lt;BLOCKQUOTE&gt;dushyant wrote:&lt;BR /&gt;
Any idea why the Classification is not getting set to that of the Favorite? (It's not changing at all)
&lt;/BLOCKQUOTE&gt;
Classifications and Properties have to be set separately. Use &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Element_RemoveClassificationItemDefault&lt;E&gt;&lt;/E&gt;, &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Element_AddClassificationItemDefault&lt;E&gt;&lt;/E&gt; and &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Element_SetPropertiesOfDefaultElem&lt;E&gt;&lt;/E&gt; as required.</description>
      <pubDate>Tue, 04 Feb 2020 13:28:13 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292069#M2686</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2020-02-04T13:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292070#M2687</link>
      <description>Hi Ralph,&lt;BR /&gt;
Thanks. I am trying to first get the existing classification of the element default:&lt;BR /&gt;

&lt;PRE&gt;API_Element&amp;amp; favElement = favorite.element;
    API_ElementMemo&amp;amp; favMemo = favorite.memo.Get();
    
    API_ElemTypeID typeID = tboxInfo.typeID;
    API_ElemVariationID variationID = APIVarId_LabelWall2;
    GS::Array&amp;lt;GS::Pair&amp;lt;API_Guid, API_Guid&amp;gt;&amp;gt;  systemItemPairs;
    
    ACAPI_Element_GetClassificationItemsDefault(typeID, variationID, systemItemPairs);&lt;/PRE&gt;

I am not able to figure out how to print/output the contents of &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;&lt;B&gt;systemItemPairs&lt;/B&gt;&lt;E&gt;&lt;/E&gt;&lt;BR /&gt;
&lt;BR /&gt;
Dushyant</description>
      <pubDate>Wed, 05 Feb 2020 12:37:17 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292070#M2687</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2020-02-05T12:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292071#M2688</link>
      <description>You could do something like:&lt;PRE&gt;	for (auto i = systemItemPairs.Begin(); i != systemItemPairs.End(); ++i) {
		//guid of system is i-&amp;gt;first
		//guid of item is i-&amp;gt;second
	}&lt;/PRE&gt;</description>
      <pubDate>Wed, 05 Feb 2020 12:48:58 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292071#M2688</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2020-02-05T12:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292072#M2689</link>
      <description>Thanks Ralph.&lt;BR /&gt;
Is there a way to translate these guids into names?</description>
      <pubDate>Wed, 05 Feb 2020 13:15:11 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292072#M2689</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2020-02-05T13:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292073#M2690</link>
      <description>&lt;BLOCKQUOTE&gt;dushyant wrote:&lt;BR /&gt;Is there a way to translate these guids into names?&lt;/BLOCKQUOTE&gt;
Use &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Classification_GetClassificationSystem&lt;E&gt;&lt;/E&gt; and &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Classification_GetClassificationItem&lt;E&gt;&lt;/E&gt;.</description>
      <pubDate>Wed, 05 Feb 2020 13:41:11 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292073#M2690</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2020-02-05T13:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292074#M2691</link>
      <description>Thanks Ralph. Got it!</description>
      <pubDate>Wed, 05 Feb 2020 15:21:54 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292074#M2691</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2020-02-05T15:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292075#M2692</link>
      <description>Got the default item id from:&lt;BR /&gt;

&lt;PRE&gt;GS::Array&amp;lt;GS::Pair&amp;lt;API_Guid, API_Guid&amp;gt;&amp;gt;  systemItemPairs;
ACAPI_Element_GetClassificationItemsDefault(typeID, variationID, systemItemPairs);
    for (auto i = systemItemPairs.Begin(); i != systemItemPairs.End(); ++i) {
        system.guid = i-&amp;gt;first;
        item.guid = i-&amp;gt;second;
        ACAPI_WriteReport("\nsystem guid: %d\n item guid: %d\n", false, system.guid, item.guid);
    }&lt;/PRE&gt;

Not able to get the guid of a favorite like this:
&lt;PRE&gt;API_Favorite    favorite (favName);
API_Element&amp;amp; favElement = favorite.element;
ACAPI_WriteReport("favElement.header.guid: %d", false, favElement.header.guid);&lt;/PRE&gt;

Tried to get the systemItemPair of the favorite like this:
&lt;PRE&gt;ACAPI_Element_GetClassificationItems(favElement.header.guid, favorite.classifications.Get());&lt;/PRE&gt;
and fed it into the for-loop like for default, it gave out a huge list of pairs instead of just one for the favorite in question.&lt;BR /&gt;
&lt;BR /&gt;
I am able to clear the default Classification:
&lt;PRE&gt;ACAPI_Element_RemoveClassificationItemDefault(typeID, variationID, item.guid);&lt;/PRE&gt;

But the default Classification is not getting set by:
&lt;PRE&gt;ACAPI_Element_AddClassificationItemDefault(typeID, variationID, favElement.header.guid);&lt;/PRE&gt;

Please help!&lt;BR /&gt;
&lt;BR /&gt;
Thanks.</description>
      <pubDate>Wed, 05 Feb 2020 17:16:35 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292075#M2692</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2020-02-05T17:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292076#M2693</link>
      <description>&lt;BLOCKQUOTE&gt;dushyant wrote:&lt;BR /&gt;Not able to get the guid of a favorite like this:
&lt;PRE&gt;API_Favorite    favorite (favName);&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;
That's the default constructor for &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;API_Favorite&lt;E&gt;&lt;/E&gt; - so all that code does is construct a new instance with the name you specified. The other data will all be empty.&lt;BR /&gt;
&lt;BR /&gt;
I think you want to call a function to look up a favorite by name, e.g. &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Favorite_Get&lt;E&gt;&lt;/E&gt;.</description>
      <pubDate>Fri, 07 Feb 2020 10:07:50 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292076#M2693</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2020-02-07T10:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292077#M2694</link>
      <description>Yes, I did use ACAPI_Favorite_Get() after that. So,&lt;BR /&gt;
&lt;BR /&gt;
favName = "myFav";    // name of an existing favorite&lt;BR /&gt;
API_Favorite    favorite (favName);&lt;BR /&gt;
&lt;BR /&gt;
ACAPI_Favorite_Get (&amp;amp;favorite); // returns NoError&lt;BR /&gt;
&lt;BR /&gt;
API_Element&amp;amp; favElement = favorite.element;&lt;BR /&gt;
&lt;BR /&gt;
ACAPI_Element_GetClassificationItems(favElement.header.guid, favorite.classifications.Get()); // this is not working&lt;BR /&gt;
&lt;BR /&gt;
Dushyant</description>
      <pubDate>Fri, 07 Feb 2020 10:14:27 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292077#M2694</guid>
      <dc:creator>dushyant</dc:creator>
      <dc:date>2020-02-07T10:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: Wall Tool from favorite</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292078#M2695</link>
      <description>&lt;BLOCKQUOTE&gt;dushyant wrote:&lt;BR /&gt;ACAPI_Element_GetClassificationItems(favElement.header.guid, favorite.classifications.Get()); // this is not working&lt;/BLOCKQUOTE&gt;
The function &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Element_GetClassificationItems&lt;E&gt;&lt;/E&gt; retrieves the classifications of an element in the model. The element data in a favorite is a template for an element (not a placed element in the model) so the guid will be null.&lt;BR /&gt;
&lt;BR /&gt;
What are you trying to do with that call? Don't you already have the Favorite classifications after calling &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;ACAPI_Favorite_Get&lt;E&gt;&lt;/E&gt;?</description>
      <pubDate>Fri, 07 Feb 2020 10:38:34 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/Wall-Tool-from-favorite/m-p/292078#M2695</guid>
      <dc:creator>Ralph Wessel</dc:creator>
      <dc:date>2020-02-07T10:38:34Z</dc:date>
    </item>
  </channel>
</rss>

