###Function###
VarGetType

###Description###
Returns the internal type representation of a variant.

###Syntax###
VarGetType ( expression )


###Parameters###
@@ParamTable@@
expression
	An expression to check the internal type of.
@@End@@

###ReturnValue###
Returns a string representing the type of the expression.


###Remarks###
See <a href="../intro/lang_datatypes.htm">language datatypes</a> for a detailed description.

<a href="IsInt.htm">IsInt()</a> can return different results as it tries to convert from a float, for example calling <a href="VarGetType.htm">VarGetType()</a> with a value of 2.0 will return "Double", but <a href="IsInt.htm">IsInt()</a> will return 1 for the same value.


###Related###
IsArray, IsBinary, IsBool, IsDllStruct, IsFloat, IsFunc, IsHWnd, IsInt, IsKeyword, IsObj, IsPtr, IsString


###Example###
@@IncludeExample@@
