Goto:
4C Home
 |
4C Docs
 |
4C External Libraries Home
 |
FCJSon Home
 |
FCJSon Function List
ArrayAddBool()
ArrayAddBool()
Purpose:
- 
FCJSon::ArrayAddBool() adds a simple boolean value to the end of an array
Usage:
- 
- 
rc = FCJSon::ArrayAddBool(<jsonident>,<bval>);
Arguments:
- 
integer <jsonident> - Ident of the array being modified
 
- 
integer <bval - The boolean value to add to the array.
Use 0 for false and 1 for true
Returns:
- 
integer <rc>
 0 - OK
 -1 - Error
Where Used:
- 
FCJSon::ArrayAddBool() can be called anytime you have a valid ident to
a json array.
Example:
- 
Example
Description:
- 
FCJSon::ArrayAddBool() adds a simple boolean value to the end of an array
Bugs/Features/Comments:
- 
See Also:
- 
FCJSon Function List
Back to Top