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

CreateNull()

Purpose:
FCJSon::CreateNull() creates a new initialized json double object and returns it's ident.
Usage:
jsonident = FCJSon::CreateNull();
Arguments:

None
Returns:
integer <jsonident> - The ident of the new json object
Where Used:
FCJSon::CreateNull() can be called from anywhere.
Example:
Example
Description:
FCJSon::CreateNull() creates a new json null object and returns it's ident.

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


Back to Top