OutputVar := Mfunc.IsNumeric(num)
Checks to see if a param num is numeric.
num
A var to check to see if it contains a number
Returns true if num is numeric; Otherwise false.
String Values containing numbers such as "100" and "0x100A" will return true However "100a" will return false.
Static method.
IsInteger(), IsFloat(), MfFloat, MfInteger, MfInt64, MfByte
MsgBox % Mfunc.IsNumeric(100) ; Displays 1 for true
MsgBox % Mfunc.IsNumeric(-100) ; Displays 1 for true
MsgBox % Mfunc.IsNumeric(-100.899) ; Displays 1 for true
MsgBox % Mfunc.IsNumeric(+100) ; Displays 1 for true
MsgBox % Mfunc.IsNumeric(+1000.889) ; Displays 1 for true
MsgBox % Mfunc.IsNumeric("100") ; Displays 1 for true
MsgBox % Mfunc.IsNumeric("0x100A") ; Displays 1 for true
MsgBox % Mfunc.IsNumeric(0x100A) ; Displays 1 for true
MsgBox % Mfunc.IsNumeric("100a") ; Displays 0 for false
MsgBox % Mfunc.IsNumeric("a100") ; Displays 0 for false
MsgBox % Mfunc.IsNumeric("a") ; Displays 0 for false