<?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 How to dock the RollDownPalette (Solved) in Archicad C++ API</title>
    <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-dock-the-RollDownPalette-Solved/m-p/690641#M10762</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Thank you for your continued support.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I apologize for the sudden post.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regarding the article &lt;A href="https://community.graphisoft.com/t5/Archicad-C-API/How-to-dock-the-RollDownPalette/td-p/356940" target="_self"&gt;"How to dock the RollDownPalette"&lt;/A&gt; that I posted in the past,&lt;BR /&gt;although a long time has passed since the original post, I recently received a message from &lt;A href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/30182" target="_self"&gt;NMK195&lt;/A&gt; with the solution, and it turns out that docking is indeed possible. I would like to share this information.&lt;/P&gt;
&lt;P&gt;(Since I could no longer add to that post, I'm creating this as a new thread.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="screenshot.png" style="width: 999px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/96464iCEA6DD0A0C303B1F/image-size/large?v=v2&amp;amp;px=999" role="button" title="screenshot.png" alt="screenshot.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;
&lt;P&gt;The method is quite simple: specify UD::IRollPanel::HVGrow as the argument for the SetGrowType() function that is executed in the constructor of each tab page contained in the roll-down palette.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;UD::IRollPanel* Panel_A = rollDownPanelSet-&amp;gt;CreateRollDownPanel();
Panel_A-&amp;gt;SetTitle(RSGetIndString(ID_ROLLDOWN_PARETTE, 2, ACAPI_GetOwnResModule()));
Panel_A-&amp;gt;SetGrowType(UD::IRollPanel::HVGrow);  //&amp;lt;-- Docking possible by setting up 'HVGrow'&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;In the past, I had set this to UD::IRollPanel::NoGrow, which prevented docking.&lt;/P&gt;
&lt;P&gt;Additionally, like regular palettes, it's necessary to assign a Guid to the palette.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If these conditions are met, the roll-down palette can be docked to Archicad.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much to &lt;A href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/30182" target="_self"&gt;NMK195&lt;/A&gt; for providing this information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm leaving source files that can build a dockable roll-down palette.&amp;nbsp;(&lt;SPAN&gt;It can be executed in Archicad 28.&lt;/SPAN&gt;)&lt;/P&gt;
&lt;P&gt;I hope this post will be helpful to everyone.&lt;/P&gt;</description>
    <pubDate>Fri, 23 Jan 2026 02:47:26 GMT</pubDate>
    <dc:creator>satoshi shimokura</dc:creator>
    <dc:date>2026-01-23T02:47:26Z</dc:date>
    <item>
      <title>How to dock the RollDownPalette (Solved)</title>
      <link>https://community.graphisoft.com/t5/Archicad-C-API/How-to-dock-the-RollDownPalette-Solved/m-p/690641#M10762</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Thank you for your continued support.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I apologize for the sudden post.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regarding the article &lt;A href="https://community.graphisoft.com/t5/Archicad-C-API/How-to-dock-the-RollDownPalette/td-p/356940" target="_self"&gt;"How to dock the RollDownPalette"&lt;/A&gt; that I posted in the past,&lt;BR /&gt;although a long time has passed since the original post, I recently received a message from &lt;A href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/30182" target="_self"&gt;NMK195&lt;/A&gt; with the solution, and it turns out that docking is indeed possible. I would like to share this information.&lt;/P&gt;
&lt;P&gt;(Since I could no longer add to that post, I'm creating this as a new thread.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="screenshot.png" style="width: 999px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/96464iCEA6DD0A0C303B1F/image-size/large?v=v2&amp;amp;px=999" role="button" title="screenshot.png" alt="screenshot.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;
&lt;P&gt;The method is quite simple: specify UD::IRollPanel::HVGrow as the argument for the SetGrowType() function that is executed in the constructor of each tab page contained in the roll-down palette.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;UD::IRollPanel* Panel_A = rollDownPanelSet-&amp;gt;CreateRollDownPanel();
Panel_A-&amp;gt;SetTitle(RSGetIndString(ID_ROLLDOWN_PARETTE, 2, ACAPI_GetOwnResModule()));
Panel_A-&amp;gt;SetGrowType(UD::IRollPanel::HVGrow);  //&amp;lt;-- Docking possible by setting up 'HVGrow'&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;In the past, I had set this to UD::IRollPanel::NoGrow, which prevented docking.&lt;/P&gt;
&lt;P&gt;Additionally, like regular palettes, it's necessary to assign a Guid to the palette.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If these conditions are met, the roll-down palette can be docked to Archicad.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much to &lt;A href="https://community.graphisoft.com/t5/user/viewprofilepage/user-id/30182" target="_self"&gt;NMK195&lt;/A&gt; for providing this information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm leaving source files that can build a dockable roll-down palette.&amp;nbsp;(&lt;SPAN&gt;It can be executed in Archicad 28.&lt;/SPAN&gt;)&lt;/P&gt;
&lt;P&gt;I hope this post will be helpful to everyone.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jan 2026 02:47:26 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Archicad-C-API/How-to-dock-the-RollDownPalette-Solved/m-p/690641#M10762</guid>
      <dc:creator>satoshi shimokura</dc:creator>
      <dc:date>2026-01-23T02:47:26Z</dc:date>
    </item>
  </channel>
</rss>

