Share via


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)

Syntax

public enum ValueAdjustMode
public enum class ValueAdjustMode
Public Enumeration ValueAdjustMode

Members

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.

See Also

Microsoft.WindowsServerSolutions.Controls Namespace

Return to top