%JSON_FreeArrayHandle function


Function

Releases a handle to the JSON array.

Declaration


%JSON_FreeArrayHandle(
    INT in handle
 )


Parameters


handleHandle to JSON array.


Return value
None


Description

Function releases a handle to the JSON array.

Exception is thrown if handle to the array is invalid.

Example


 INT _obj
 _obj := %JSON_CreateArray()
 
 %JSON_FreeArrayHandle(_obj)