GDL & Model View Options :?:
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2006-05-18
08:15 PM
- last edited on
2023-05-24
10:33 AM
by
Rubia Torres
2006-05-18
08:15 PM
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.
4 REPLIES 4

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2006-05-18 08:58 PM
2006-05-18
08:58 PM
Mryan wrote:The RCP option works by completely removing the object and only showing the opening. It's really not even GDL-related.
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?
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.
The only Display Option accessible from inside GDL is the Door & Window Marker setting and the Construction Fills display.
Tom Waltz
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2006-05-18 11:31 PM
2006-05-18
11:31 PM
Mryan wrote:
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?
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.
Yeah, sort of...basically you have to script the objects to be aware of the status of the "Doors & Windows:" display options.
Following is a snipet of a master script I use to turn on and off special 2d text display on my windows:
xyz=Request ("window_door_show_dim", " ", show)
if show = 0 then
state=0
else
state=1
endif
So basically when state =1 then you can script whatever behavior you wish when that display option is active.
HTH,
Dan K
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2006-05-19 02:51 PM
2006-05-19
02:51 PM
Dan wrote:Little confused ... I'm not sure exactly how this works
Yeah, sort of...basically you have to script the objects to be aware of the status of the "Doors & Windows:" display options.
Following is a snipet of a master script I use to turn on and off special 2d text display on my windows:
xyz=Request ("window_door_show_dim", " ", show)
if show = 0 then
state=0
else
state=1
endif
So basically when state =1 then you can script whatever behavior you wish when that display option is active.
HTH,
Dan K

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2006-05-19 03:20 PM
2006-05-19
03:20 PM
Dan wrote: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.
Yeah, sort of...basically you have to script the objects to be aware of the status of the "Doors & Windows:" display options
HTH,
Dan K
Tom Waltz