<?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: GDL &amp;amp; Model View Options  :?: in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-amp-Model-View-Options/m-p/76676#M33715</link>
    <description>&lt;BLOCKQUOTE&gt;Mryan wrote:&lt;BR /&gt;Ok I have an object that in plan is supposed to represent one thing on one plot sheet and something else on another.  Is their a way to for the object to automatically take settings based on the Model View Option? &lt;BR /&gt;
&lt;BR /&gt;
Example – if you draw a wall with a door and then go to the model view option and then go to RCP-empty... the door swing is gone.&lt;/BLOCKQUOTE&gt;

The RCP option works by completely removing the object and only showing the opening. It's really not even GDL-related.&lt;BR /&gt;
&lt;BR /&gt;
The only Display Option accessible from inside GDL is the Door &amp;amp; Window Marker setting and the Construction Fills display.</description>
    <pubDate>Thu, 18 May 2006 18:58:07 GMT</pubDate>
    <dc:creator>TomWaltz</dc:creator>
    <dc:date>2006-05-18T18:58:07Z</dc:date>
    <item>
      <title>GDL &amp; Model View Options  :?:</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-amp-Model-View-Options/m-p/76675#M33714</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Ok I have an object that in plan is supposed to represent one thing on one plot sheet and something else on another.  Is their a way to for the object to automatically take settings based on the Model View Option? &lt;BR /&gt;
&lt;BR /&gt;
Example – if you draw a wall with a door and then go to the model view option and then go to RCP-empty... the door swing is gone.&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 24 May 2023 08:33:11 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-amp-Model-View-Options/m-p/76675#M33714</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-05-24T08:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: GDL &amp; Model View Options  :?:</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-amp-Model-View-Options/m-p/76676#M33715</link>
      <description>&lt;BLOCKQUOTE&gt;Mryan wrote:&lt;BR /&gt;Ok I have an object that in plan is supposed to represent one thing on one plot sheet and something else on another.  Is their a way to for the object to automatically take settings based on the Model View Option? &lt;BR /&gt;
&lt;BR /&gt;
Example – if you draw a wall with a door and then go to the model view option and then go to RCP-empty... the door swing is gone.&lt;/BLOCKQUOTE&gt;

The RCP option works by completely removing the object and only showing the opening. It's really not even GDL-related.&lt;BR /&gt;
&lt;BR /&gt;
The only Display Option accessible from inside GDL is the Door &amp;amp; Window Marker setting and the Construction Fills display.</description>
      <pubDate>Thu, 18 May 2006 18:58:07 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-amp-Model-View-Options/m-p/76676#M33715</guid>
      <dc:creator>TomWaltz</dc:creator>
      <dc:date>2006-05-18T18:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: GDL &amp; Model View Options  :?:</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-amp-Model-View-Options/m-p/76677#M33716</link>
      <description>&lt;BLOCKQUOTE&gt;Mryan wrote:&lt;BR /&gt;Ok I have an object that in plan is supposed to represent one thing on one plot sheet and something else on another.  Is their a way to for the object to automatically take settings based on the Model View Option? &lt;BR /&gt;
&lt;BR /&gt;
Example – if you draw a wall with a door and then go to the model view option and then go to RCP-empty... the door swing is gone.&lt;/BLOCKQUOTE&gt;

&lt;BR /&gt;
Yeah, sort of...basically you have to script the objects to be aware of the status of the "Doors &amp;amp; Windows:" display options.&lt;BR /&gt;
&lt;BR /&gt;
Following is a snipet of a master script I use to turn on and off special 2d text display on my windows:&lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;&lt;FONT color="#001bff"&gt;xyz=Request ("window_door_show_dim", " ", show)&lt;BR /&gt;
if show = 0 then &lt;BR /&gt;
   state=0&lt;BR /&gt;
else&lt;BR /&gt;
   state=1&lt;BR /&gt;
endif&lt;/FONT&gt;&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
So basically when state =1 then you can script whatever behavior you wish when that display option is active.&lt;BR /&gt;
&lt;BR /&gt;
HTH,&lt;BR /&gt;
Dan K</description>
      <pubDate>Thu, 18 May 2006 21:31:17 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-amp-Model-View-Options/m-p/76677#M33716</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-05-18T21:31:17Z</dc:date>
    </item>
    <item>
      <title>Re: GDL &amp; Model View Options  :?:</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-amp-Model-View-Options/m-p/76678#M33717</link>
      <description>&lt;BLOCKQUOTE&gt;Dan wrote:&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Yeah, sort of...basically you have to script the objects to be aware of the status of the "Doors &amp;amp; Windows:" display options.&lt;BR /&gt;
&lt;BR /&gt;
Following is a snipet of a master script I use to turn on and off special 2d text display on my windows:&lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;&lt;FONT color="#001bff"&gt;xyz=Request ("window_door_show_dim", " ", show)&lt;BR /&gt;
if show = 0 then &lt;BR /&gt;
   state=0&lt;BR /&gt;
else&lt;BR /&gt;
   state=1&lt;BR /&gt;
endif&lt;/FONT&gt;&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
So basically when state =1 then you can script whatever behavior you wish when that display option is active.&lt;BR /&gt;
&lt;BR /&gt;
HTH,&lt;BR /&gt;
Dan K&lt;/BLOCKQUOTE&gt;

Little confused ... I'm not sure exactly how this works</description>
      <pubDate>Fri, 19 May 2006 12:51:34 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-amp-Model-View-Options/m-p/76678#M33717</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2006-05-19T12:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: GDL &amp; Model View Options  :?:</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/GDL-amp-Model-View-Options/m-p/76679#M33718</link>
      <description>&lt;BLOCKQUOTE&gt;Dan wrote:&lt;BR /&gt;Yeah, sort of...basically you have to script the objects to be aware of the status of the "Doors &amp;amp; Windows:" display options&lt;BR /&gt;
&lt;BR /&gt;
HTH,&lt;BR /&gt;
Dan K&lt;/BLOCKQUOTE&gt;

That command is a pretty limited use, though, since it only works if the Show Doors/Windows is get to "Show with Dimension." The other settings cannot be individually identified to only use the RCP option.</description>
      <pubDate>Fri, 19 May 2006 13:20:19 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/GDL-amp-Model-View-Options/m-p/76679#M33718</guid>
      <dc:creator>TomWaltz</dc:creator>
      <dc:date>2006-05-19T13:20:19Z</dc:date>
    </item>
  </channel>
</rss>

