CountElementsOfList

Typeoperator
DictionaryLCB
LibraryLiveCode Builder
Syntax
the number of elements in <Target>
Associationscom.livecode.list
Summary

Returns the number of elements in Target

Parameters
NameTypeDescription
Target

An expression which evaluates to a list.

Example
variable tVar as List
put [1,2,3,4,5] into tVar
variable tNum as Number
put the number of elements in tVar into tNum -- tNum is 5
Values
NameTypeDescription
return

The number of elements in the list Target.

Description

Returns the number of elements in the list.

Tagslists