Having trouble getting help?
Contact Support
Contact Support
Range Support in SfNumericTextBox
17 Jan 20251 minute to read
Restrict the values within a specific range by setting the Maximum and Minimum property values.
[C#]
SfNumericTextBox numericTextBox = new SfNumericTextBox()
{
Minimum = 50,
Maximum = 1000,
Value = 10,
};
this.Add(numericTextBox);
NOTE
Default Value of
Maximum
andMinimum
is “null”.