Set a parameter text default to change later??
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2017-06-23 12:08 PM
2017-06-23
12:08 PM
for example
if (A = A1) then
description = 1
endif
if (A = B1) then
description = 2
endif
but I need to be able to edit the 1 and the 2 later... Thanks
ArchiCAD 23
Windows 10
Windows 10
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2017-06-23 09:30 PM
2017-06-23
09:30 PM
It's very straightforward: just define multiple user parameters like descr1, descr2, descr3, assign Text type to them so you will be able to type whatever you want as the parameter value.
Per your own example:
Per your own example:
if (A = A1) then description = descr1 endif if (A = B1) then description = descr2 endif