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.

Namespace:   Microsoft.WindowsServerSolutions.Controls
Assembly:  AdminCommon (in AdminCommon.dll)

public enum class ValueAdjustMode

Member nameDescription
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.

Return to top

Community Additions

ADD
Show: