﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2811	VarGetType - Example - proposal	mLipok	Melba23	"
{{{
#include <MsgBoxConstants.au3>
`#include <array.au3>

Local $aArray[2] = [1, ""Example""]
Local $dBinary = Binary(""0x00204060"")
Local $bBoolean = False
Local $hFunc = ConsoleWrite
Local $pPtr = Ptr(-1)
Local $hWnd = WinGetHandle(AutoItWinGetTitle())
Local $iInt = 1
Local $fFloat = 2.0
Local $oObject = ObjCreate(""Scripting.Dictionary"")
Local $sString = ""Some text""
Local $tStruct = DllStructCreate(""wchar[256]"")
Local $vKeyword = Default
Local $fu_Test = Test

MsgBox($MB_SYSTEMMODAL, """", _
		""Variable Types"" & @CRLF & _
		""$aArray is an "" & VarGetType($aArray) & "" variable type."" & @CRLF & _
		""$dBinary is a "" & VarGetType($dBinary) & "" variable type."" & @CRLF & _
		""$bBoolean is a "" & VarGetType($bBoolean) & "" variable type."" & @CRLF & _
		""$hFunc is a "" & VarGetType($hFunc) & "" variable type."" & @CRLF & _
		""$pPtr is a "" & VarGetType($pPtr) & "" variable type."" & @CRLF & _
		""$hWnd is a "" & VarGetType($hWnd) & "" variable type."" & @CRLF & _
		""$iInt is an "" & VarGetType($iInt) & "" variable type."" & @CRLF & _
		""$fFloat is a "" & VarGetType($fFloat) & "" variable type."" & @CRLF & _
		""$oObject is a "" & VarGetType($oObject) & "" variable type."" & @CRLF & _
		""$sString is a "" & VarGetType($sString) & "" variable type."" & @CRLF & _
		""$tStruct is a "" & VarGetType($tStruct) & "" variable type."" & @CRLF & _
		""$vKeyword is a "" & VarGetType($vKeyword) & "" variable type."" & @CRLF & _
		""MsgBox is a "" & VarGetType(MsgBox) & "" variable type."" & @CRLF & _
		""_ArrayAdd is a "" & VarGetType(_ArrayAdd) & "" variable type."" & @CRLF & _
		""$fu_Test is a "" & VarGetType($fu_Test) & "" variable type."" & @CRLF & _
		""Test is a "" & VarGetType(Test) & "" variable type."" & @CRLF)

Func Test()
EndFunc

}}}
"	Feature Request	closed	3.3.13.11	Documentation		None	Completed		
