...
You can restrict the set of values that the end user can provide to the input by using the setMinsetFrom()
and setMaxsetTo()
methods.
Code Block | ||
---|---|---|
| ||
api.inputBuilderFactory() .createIntegerUserEntry('NaturalNumber') .setFrom(1) .setTo(100) .getInput() |