OutputVar := Mfunc.IfIs(ByRef var, type)
Checks whether a variable's contents are numeric, uppercase, etc.
var
The variable name.
type
supported types are integer,float,number,digit,xdigit,alpha,upper,lower,alnum,space, and time
Returns true if var is type; Otherwise false.
Also See:AutoHotkey if var is type method
Static Method.
if (Mfunc.IfIs(var,"float"))
{
MsgBox, %var% is a floating point number.
}
else if (Mfunc.IfIs(var,"integer"))
{
MsgBox, %var% is an integer.
}
else if (Mfunc.IfIs(var,"time"))
{
MsgBox, %var% is also a valid date-time.
}