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

CreateString()

Purpose:
FCJSon::CreateString() creates a new initialized json string object and returns it's ident.
Usage:
jsonident = FCJSon::CreateString(<aval>);
Arguments:

alpha <aval> - initial alpha value
Returns:
integer <jsonident> - The ident of the new json object
Where Used:
FCJSon::CreateString() can be called from anywhere.
Example:
Example
Description:
FCJSon::CreateString() creates a new initialized json string object returns it's ident.

If the only reason for creating the string object is to immediately add it to another object and then never use if for anything else, you should use one of FCJSon::ArrayAddString(), FCJSonArrayPutString(), or FCJSon::AddString() instead. Those functions will create, initialize, and add it the other object using only one call.
Bugs/Features/Comments:
See Also:
FCJSon Function List


Back to Top