ValueAdjustMode Enumeration
Describes what happens when you programmatically set a value that is out of the valid range. The default value adjustment mode is None.
Assembly: AdminCommon (in AdminCommon.dll)
| Member name | Description | |
|---|---|---|
| ExpandRange | If the value is less than the minimum allowed value, decrease the minimum allowed value to the new value; if the value is greater than the maximum allowed value, increase the maximum allowed value to the new value. | |
| LimitInput | If the value is less than the minimum allowed value, set the value to the existing minimum allowed value; if the value is greater than the maximum allowed value, set the value to the existing maximum allowed value. | |
| None | Does nothing. This is the default mode. |
Community Additions
ADD
Show: