Porovnávané verzie

Kľúč

  • Tento riadok sa pridal
  • Riadok je odstránený.
  • Formátovanie sa zmenilo.

%JSON_ArrayAppendObject function


Function

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

Declaration


Blok kódu
languageesl
themeConfluence
%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


Blok kódu
languageesl
themeRDark
 INT _arr
 _arr := %JSON_CreateArray()

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

 %JSON_FreeArrayHandle(_arr)
 %JSON_FreeObjectHandle(_tmp)