List of Json methods: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Automatically generated page update)
(Automatically generated page update)
Line 17: Line 17:
<tr><td valign="top">[[Insert (Json function)|Insert]]</td><td valign="top">Insert an item into a JSON array</td></tr>
<tr><td valign="top">[[Insert (Json function)|Insert]]</td><td valign="top">Insert an item into a JSON array</td></tr>
<tr><td valign="top">[[Item (Json property)|Item]]</td><td valign="top">Return or set JSON object/array item value</td></tr>
<tr><td valign="top">[[Item (Json property)|Item]]</td><td valign="top">Return or set JSON object/array item value</td></tr>
<tr><td valign="top">[[ItemByNumber (Json function)|ItemByNumber]]</td><td valign="top">Return or set JSON object/array item value</td></tr>
<tr><td valign="top">[[ItemByNumber (Json function)|ItemByNumber]]</td><td valign="top">Return JSON object/array item value by item number</td></tr>
<tr><td valign="top">[[NameByNumber (Json function)|NameByNumber]]</td><td valign="top">Get name of item in JSON object</td></tr>
<tr><td valign="top">[[NameByNumber (Json function)|NameByNumber]]</td><td valign="top">Get name of item in JSON object</td></tr>
<tr><td valign="top">[[Number (Json function)|Number]]</td><td valign="top">Create a Number JSON object</td></tr>
<tr><td valign="top">[[Number (Json function)|Number]]</td><td valign="top">Create a Number JSON object</td></tr>

Revision as of 14:45, 18 February 2015

The following are the available Json class methods.

MethodDescription
AddAdd an item to a JSON array
ArrayCreate an Array JSON object
BooleanCreate a Boolean JSON object
BooleanValueGet boolean value of JSON object
CopyCopy the JSON object
CountNumber of items in object
DeepCopyCopy the JSON object
DeleteDelete a JSON object/array item value
FalseCreate a false Boolean JSON object
InsertInsert an item into a JSON array
ItemReturn or set JSON object/array item value
ItemByNumberReturn JSON object/array item value by item number
NameByNumberGet name of item in JSON object
NumberCreate a Number JSON object
NumberByNameGet number of named item in JSON object
NumberValueGet number value of JSON object
ObjectCreate an Object JSON object
ParseCreate an JSON object from serialized JSON
StringCreate a String JSON object
StringValueGet string value of JSON object
StringifySerialize a JSON object
ToStringSerialize a JSON object
TrueCreate a true Boolean JSON object
TypeGet type of JSON object

See also