%XML_Length function


Function
The function returns the number of items of the list.
Declaration


INT %XML_Length(
    INT in list
 )
Parameters


listHandle to a list of XML nodes.
Return value
The number of items of the list.
Description
The function returns the number of items of the list.
Example


 INT _length
 INT _listChildNodes
 _listChildNodes :=  %XML_ChildNodes(_el)
 _length := %XML_Length(_listChildNodes)