[]
Gets or sets a decimal value indicate the minimum of range control.
[TypeConverter(typeof(DecimalConverter))]
public decimal MinValue { get; set; }
<TypeConverter(GetType(DecimalConverter))>
Public Property MinValue As Decimal
MinValue controls the minimum of Value no matter the programmatic way or user interaction. When Value is beyond the MinValue, the value will be validated when when control lost keyboard focus according to the ControlValidatorSet setting.
Set MinValue greater than MaxValue, MaxValue will change to same as MinValue; Set MaxValue less than MinValue, the MinValue won't change and the MaxValue changes to same as MinValue.