IfIs()

Namespace ›› System ›› Mfunc ›› Methods ››
Parent Previous Next

IfIs()

OutputVar := Mfunc.IfIs(ByRef var, type)

Mfunc.IfIs(ByRef var, type)

Checks whether a variable's contents are numeric, uppercase, etc.

Parameters

var

The variable name.

type

supported types are integer,float,number,digit,xdigit,alpha,upper,lower,alnum,space, and time

Returns

Returns true if var is type; Otherwise false.

Remarks

Also See:AutoHotkey if var is type method
Static Method.

Example

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.
}