it is not possible to set the minimum value defined using the spin button in SpinEdit6 InplaceEdit of NextGrid6
Max = 10.0
Min = 0.05
Increment = 0.01
Precision = 2
correction possible in
procedure TNxSpinEdit6.DoButtonsSpin(Sender: TObject; Buttons: TNxSpinButton);
from
if CheckRange and (Value - FIncrement < Min) then Exit;
to
if CheckRange and (CompareValue(Value - FIncrement, Min) = LessThanValue) then Exit;