eHMI variable input to be limited, MIN and MAX value input

Hi,
I am new to plcnext and I still find it a bit different to work with the new eHMI. I am quite use to VISU+ and the new eHMI works completely different.
I have a variable input on the eHMI which is an INT and I would like to limit the input to the variable to be between 0 and 100 for example.
How do you do this exactly?
I will really appreciate any help.
Gordon

myINT := LIMIT(0, myInt, 100);

If the user inserts values outside that range, it would automatically be forced to the nearest boundary. So inserting -5 would yield 0, and 110 would be 100.