%JSON_ArrayAppendObject function


Function

Appends a new object at the end of the JSON array.

Declaration
%JSON_ArrayAppendObject(
    INT in handle, 
    INT in object
 )
Parameters
handleHandle to parent JSON array.
arrayHandle to JSON object.
Return value
None.


Description

The function appends a new object at the end of the JSON array.

If it is an invalid handle on a JSON array or an invalid handle on an appended JSON object, an exception is thrown.

Example
 INT _arr
 _arr := %JSON_CreateArray()

 INT _tmp
 _tmp := %JSON_CreateObject()
 
 %JSON_ArrayAppendObject(_arr, _tmp)

 %JSON_FreeArrayHandle(_arr)
 %JSON_FreeObjectHandle(_tmp)
Napíšte komentár