A program to recognize and reward our most engaged community members
I customized a const attribute value through the API in edem. How can I set the upper and lower limits for this attribute value in the API program?
HI,
Is this for the user defined GUI for defining the inputs? I don't believe there are any options for setting limits but you could put an IF statement in the code. Not specific to EDEM but if you can read the value and limit it through something like:
if(value > n)
{//code to set value to max}
else if(value < n)
{//code to set value to min}
Regards
Stephen