XML_Item
%XML_Item function
Function
The function returns the item from the list.
Declaration
INT %XML_Item(
INT in list,
INT in index
)Parameters
list | Handle to list of XML nodes. |
index | Node serial number. |
Return value
Handle to the XML node.
Description
The function returns the item from the list defined by the serial number. Items are numbered from 0.
Example
INT _item
INT _listChildNodes
_listChildNodes := %XML_ChildNodes(_el)
_item := %XML_Item(_listChildNodes, 1)