4D v16.3

Size of array

Home

 
4D v16.3
Size of array

Size of array 


 

Size of array ( array ) -> Function result 
Parameter Type   Description
array  Array in Array whose size is returned
Function result  Longint in Returns the number of elements in array

The Size of array command returns the number of elements in array.

The following example returns the size of the array anArray:

 vlSize:=Size of array(anArray) ` vlSize gets the size of anArray

The following example returns the number of rows in a two-dimensional array:

 vlRows:=Size of array(a2DArray) ` vlRows gets the size of a2DArray

The following example returns the number of columns for a row in a two-dimensional array:

 vlColumns:=Size of array(a2DArray{10}) ` vlColumns gets the size of a2DArray{10}



See also 

DELETE FROM ARRAY
INSERT IN ARRAY

 
PROPERTIES 

Product: 4D
Theme: Arrays
Number: 274

This command can be run in preemptive processes

 
HISTORY 

Created: < 4D v6

 
ARTICLE USAGE

4D Language Reference ( 4D v16)
4D Language Reference ( 4D v16.1)
4D Language Reference ( 4D v16.2)
4D Language Reference ( 4D v16.3)