Code Block | ||||
---|---|---|---|---|
| ||||
FUNCTION xpfStringToEnumeration (enumId : GENERIC; aString : STRING) enumeration : GENERIC; |
This function returns enumeration element value. The value of the given STRING is placed within the given target enumeration instance.
...
Arguments
...
Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
...
Options
...
Example
...
Code Block | language | express
---|
enum_id := xpfGetDefinedType(XPXTARGETMODELID, enum_name); enum_element := xpfStringToEnumeration(enum_id, enum_element_name); |
...