Replies: 1 comment
-
To me it would seem that the following works: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Assume we have a
parameter Boolean b
, and we want to add more choices thantrue|false
. Of course we would use an enumeration:parameter MyChoices myChoice
Of course we couly use a work-around:
The user can specify
b
and ignoremyChoice
, or ignoreb
and specifymyChoice
.More elegant would be a conversion script converting
parameter Boolean b
toparameter MyChoices myChoice
.As far as I know this is'nt possible up to now. Are there any considerations solving this problem?
Beta Was this translation helpful? Give feedback.
All reactions