Vidíte historickú verziu tejto stránky. Pozrite si aktuálnu verziu.

Porovnať s aktuálnou verziou Zobraziť históriu stránky

Verzia 1 Aktuálny »

JSON_ArrayAppendObject


Function

Append object to 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

Funcion append object to JSON array

Exception is thrown if handle to parent array or handle to object is invalid.

Example
 INT _arr
 _arr := %JSON_CreateArray()

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

 %JSON_FreeArrayHandle(_arr)
 %JSON_FreeObjectHandle(_tmp)
  • Žiadne štítky