Aide:IsArray.txt
De Wiki AutoIt Français
Document original V3.3.6.1 :
###Function###
IsArray
###Description###
Checks if a variable is an array type.
###Syntax###
IsArray ( variable )
###Parameters###
@@ParamTable@@
variable
The variable/expression to check.
@@End@@
###ReturnValue###
@@ReturnTable@@
Success: Returns 1.
Failure: Returns 0 if parameter is not an array variable.
@@End@@
###Remarks###
Can be useful to validate array/non-array parameters to user-defined functions.
###Related###
IsFloat, IsInt, IsString, IsNumber, IsBool, IsHWnd, IsBinary, IsPtr, VarGetType
###Example###
@@IncludeExample@@
Document traduit V3.3.6.1 :
###Function###
IsArray
###Description###
Vérifie si une variable est de type tableau.
###Syntax###
IsArray ( variable )
###Parameters###
@@ParamTable@@
variable
Variable/Expression a vérifier.
@@End@@
###ReturnValue###
@@ReturnTable@@
Succès: Retourne 1.
Échec: Retourne 0 si le paramètre n'est pas une variable tableau.
@@End@@
###Remarks###
Peux être utile afin de vérifier dans une librairie de fonctions (UDF) si un paramètre est de type tableau.
###Related###
<a href="IsFloat.htm">IsFloat</a>, <a href="IsInt.htm">IsInt</a>, <a href="IsString.htm">IsString</a>, <a href="IsNumber.htm">IsNumber</a>, <a href="IsBool.htm">IsBool</a>, <a href="IsHWnd.htm">IsHWnd</a>, <a href="IsBinary.htm">IsBinary</a>, <a href="IsPtr.htm">IsPtr</a>, <a href="VarGetType.htm">VarGetType</a>
###Example###
@@IncludeExample@@
Traducteur : HeaTon