|
|
|
|
|
IsNumeric (Function) In french: EstNumérique Enables you to find out whether a variable or a control is: - a numeric (integer, real, currency or numeric).
- a string that can be converted into numeric.
IsNumeric("143")
IsNumeric("1.67")
IsNumeric("ABC")
IsNumeric("3plus2")
IsNumeric("7,5")
IsNumeric("1D2")
IsNumeric("2.5e-2")
IsNumeric("69 Lyon Rhône")
IsNumeric("09/01/2007")
Syntax
<Result> = IsNumeric(<Variable or control>)
<Result>: Boolean - True if the specified variable or control is:
- a numeric
- a string that can be converted into numeric (by Val for example),
- False otherwise.
<Variable or control>: Any type Element to handle. Remarks - A buffer is not considered as being a numeric.
- A duration is not considered as being a numeric.
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|