[]
Gets or sets a decimal value indicate the maximum of range control.
[TypeConverter(typeof(DecimalConverter))]
public decimal MaxValue { get; set; }
<TypeConverter(GetType(DecimalConverter))>
Public Property MaxValue As Decimal
MaxValue controls the maximum of Value no matter the programmatic way or user interaction. When Value is beyond the MaxValue, 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.