This is a subtle thing.
If you have both Max and Min set to 0, there is no maximum or minimum number you can enter (with the exception of the type limit). In other words, no limits imposed.
Set Max = 5 and Min = 0. Then if you try to set Max > 5, Max will not allow this and will stay at a value of 5.
Based on the same limits, if you try to set Min < 0, Min allows that negative number. Min is not working to stop the value from going less than 0.
Set Max = 0 and Min = -5. Then if you try to set Min < -5, Min will not allow this and will stay at a value of 0.
Based on the same limits, if you try to set Max > 0, Max allows that positive number. Max is not working to stop the value from going greater than 0.
Basically you have to set both Max and Min to NOT 0 to enforce the limits. Placing either Max or Min to 0 will NOT enforce that limit. Surely this is not by design.
I am not sure about this problem(?) on other components that have these Max/Min limits. I hope this is isolated to the spin edit.
I have a real world case where Max = 5 and Min = 0. Cannot place Min = 1 or -1 because it would defeat the purpose of using these limits.
Version 11.26