ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Queue, stack, list and array functions / Array functions
  • Equivalences
  • Miscellaneous
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Returns the characteristics of an array: type of elements, number of dimensions, dimensions, etc.
Note: This function can only be used on WLanguage arrays..
Example
// Nombre total d'éléments dans un tableau à une dimension
MonTableau is array of 5 int
...
nbDim is int
nbDim = ArrayInfo(MonTableau, tiTotalNumber)
// nbDim vaut 5
// Dimensions d'un tableau
MonTableau is array of 5 by 2 int
nbDimLigne is int 
nbDimLigne = ArrayInfo(MonTableau, tiNumberRows)
// NbDimLigne vaut 5
nbDimColonne is int 
nbDimColonne = ArrayInfo(MonTableau, tiNumberColumns)
// NbDimColonne vaut 2
Syntax
<Result> = ArrayInfo(<WLanguage array> , <Type of information> [, <Additional parameter>])
<Result>: Integer or boolean
Requested information.
Note: The function returns no result on a dynamic array that has not been allocated.
<WLanguage array>: Array
Name of the Array variable to use.
<Type of information>: Integer constant
Type of information to retrieve:
tiAssociativeWithDuplicateBoolean.
  • True if the associative array supports the duplicates
  • False otherwise.
tiDimensionInteger. Number of elements found in a dimension of the array.
<Additional parameter> must contain the index of the dimension whose number of elements you want to get.
Default value for <Paramètre supplémentaire>: 1
Associative array: number of elements in the array.
tiDynamicBoolean.
  • True if the array is a dynamic array.
  • False otherwise.
tiElementDefinitionDefinition variable. Definition of the type of elements.
tiElementSizeInteger. Size (in bytes) of an array element.
tiElementTypeInteger. Type of array elements. <Result> is an integer corresponding to the constants of TypeVar.
tiKeyTypeInteger. Type of keys found in the associative array. <Result> is an integer corresponding to the constants of TypeVar.
Non-associative array: <Résultat> is 0.
tiNumberColumnsInteger. Number of columns found in a two-dimensional array. The number of columns corresponds to the 2nd dimension of the array.
If the array in not a two-dimensional array, tiNumberColumns = 0.
Associative array: 0.
tiNumberDimensionsInteger. Number of array dimensions (between 1 and 10)
Associative array: 1.
tiNumberRowsInteger. Number of rows found in a two-dimensional array. The number of rows corresponds to the 1st dimension of the array.
If the array is not a two-dimensional array, tiNumberRows = 0.
Associative array: 0.
tiTotalNumberInteger. Total number of elements found in the array.
tiTotalSizeInteger. Total size (in bytes) of array.
<Additional parameter>: Optional
Additional parameter that must be specified according to the requested information.
Remarks

Equivalences

  • The tiNumberRows constant is equivalent to the tiDimension constant used with <Additional parameter> = 1. The following codes are identical:
    ArrayInfo(MonTableau, tiNumberRows)
    ArrayInfo(MonTableau, tiDimension, 1)
  • The tiNumberColumns constant is equivalent to the tiDimension constant used with <Additional parameter> = 2.
    ArrayInfo(MonTableau, tiNumberColumns)
    ArrayInfo(MonTableau, tiDimension, 2)

Miscellaneous

This function can be used with:
  • simple arrays.
  • fixed arrays.
  • dynamic arrays.
  • associative arrays.
Component: wd300vm.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/24/2024

Send a report | Local help