min

The minimum numeric value allowed for the NumericTextBox input.
Attempts to set a smaller value will fall back to this minimum.
Defaults to 0.

<input id="numeric" />

<script type="text/javascript">
    $(function () {
        $("#numeric").shieldNumericTextBox({
            min: 100,
            max: 1000,
            value: 300,
            step: 20
       });
    });
</script>