var instance; // Type: wijmo.input.IFormatValidateLib; var returnValue; // Type: bool // Parameters var value; // Type: string var minValue; // Type: number var maxValue; // Type: number var culture; // Type: string returnValue = instance.validateNumber(value, minValue, maxValue, culture);
Parameters
- value
- The numeric value to validate.
- minValue
- The smallest number to accept.
- maxValue
- The largest number to accept.
- culture
- The culture that the validation library uses.
Return Value
Returns a Boolean value indicating whether the numeric value falls within the specified range.