AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de Windows / Funciones varias de WINDEV
  • Example 1: Calculating the dimension of an array
  • Example 2: Resizing a dynamic array
Dimension (Example)
Example 1: Calculating the dimension of an array
The following example is used to check the size of an array. The size of the array to check is a variable.
PROCEDURE CheckArr(ArrName)
I is int
FOR I = 1 TO Dimension(ArrName)
IF ArrName[I] = 0 THEN RESULT False
END
RESULT True
Example 2: Resizing a dynamic array
This example is used to resize a dynamic array.
MyArr is array dynamic of 5 by 3 int
...
// Resize the array
Dimension(MyArr, 8, 6)
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/05/2022

Señalar un error o enviar una sugerencia | Ayuda local