Goto: 4C Home | 4C Docs | 4C External Libraries Home | FCJSon Home | FCJSon Function List AddString()

AddString()

Purpose:
FCJSon::AddString() adds an alpha <key>:<value> pair to a json object.
Usage:
rc = FCJSon::AddString(<jsonident>,<akey>,<aval>);
Arguments:

integer <jsonident> - The ident of the object being modified

alpha <akey> - The key to use for the alpha value

alpha <aval> - The value to assign to the string.
Returns:
integer <rc>
0 - OK
-1 - Error
Where Used:
FCJSon::AddString() can be called anytime you have a valid json ident to an object of <key>:<value> pairs.
Example:
Example
Description:
FCJSon::AddString() adds an alpha <key>:<value> pair to a json object.
Bugs/Features/Comments:
See Also:
FCJSon Function List


Back to Top