Independent Boundaries on Numeric Text Field

Got a small request here… add options for boundaries on numeric text field component to use just an upper or just a lower bound. Most obvious example of this would be to restrict values to the set of natural numbers. Something like positive numbers only could obviously be done with the formatted text field, but something like valid Fahrenheit temperatures would be a bit tricky.

:scratch: There already are bounds on the numeric text field…

I mean having the ability to use a lower bound but no upper bound or vice versa. Correct me if I’m wrong, but it appears right now you get both or neither and don’t get the option to choose just a lower bound or just an upper bound.

Oh, yeah I suppose that is true.

Of course, you could just use the max or min value for the type you’re using. I mean, thats what “no bounds” would mean anyways. For example, the max and min values for a 4-byte int are -2^31 and (2^31)-1.

But I’ll agree that it would be nice to be able to choose just a min or just a max.