AddItemBoolean
PowerScript function
Description
Adds a child item of JsonBooleanItem type in the JSON generator
object.
Applies to
Syntax
|
1 |
objectname.AddItemBoolean ( ParentItemHandle, Value ) |
|
1 |
objectname.AddItemBoolean ( ParentItemHandle, Key, Value ) |
|
1 |
objectname.AddItemBoolean ( ParentItemPath, Value ) |
|
1 |
objectname.AddItemBoolean ( ParentItemPath, Key, Value ) |
|
Argument |
Description |
|---|---|
|
objectname |
The name of the JSONGenerator object in which you want to |
|
ParentItemHandle |
A long whose value is the handle of the parent item of |
|
ParentItemPath |
A string whose value is the path of the parent item of |
|
Key |
A string whose value is the key of the child item |
|
Value |
A boolean whose value is the value of the child |
Return value
Long.
Returns the handle of the new child item if it succeeds and -1 if an
error occurs. If any argument’s value is null, the method returns
null.
Example 1
This example creates an array root item and adds a boolean child
item.
|
1 2 3 4 5 6 7 8 9 |
JsonGenerator lnv_JsonGenerator Long ll_RootArray lnv_JsonGenerator = Create JsonGenerator // Creates an array root item ll_RootArray = lnv_JsonGenerator.CreateJsonArray() // Adds a boolean child item lnv_JsonGenerator.AddItemBoolean(ll_RootArray, true) |
Example 2
This example creates an object root item and adds a boolean child
item.
|
1 2 3 4 5 6 7 8 9 |
JsonGenerator lnv_JsonGenerator Long ll_RootObject lnv_JsonGenerator = Create JsonGenerator // Creates an object root item ll_RootObject = lnv_JsonGenerator.CreateJsonObject () // Adds a boolean child item lnv_JsonGenerator.AddItemBoolean(ll_RootObject, "boolean", true) |
Example 3
This example creates an array root item and adds a boolean child
item.
|
1 2 3 4 5 6 7 8 9 10 |
JsonGenerator lnv_JsonGenerator String ls_Path lnv_JsonGenerator = Create JsonGenerator // Creates an array root item lnv_JsonGenerator.CreateJsonArray() ls_Path = "/" // Adds a boolean child item lnv_JsonGenerator.AddItemBoolean(ls_Path, true) |
Example 4
This example creates an object root item and adds a boolean child
item.
|
1 2 3 4 5 6 7 8 9 10 |
JsonGenerator lnv_JsonGenerator String ls_Path lnv_JsonGenerator = Create JsonGenerator // Creates an object root item lnv_JsonGenerator.CreateJsonObject () ls_Path = "/" // Adds a boolean child item lnv_JsonGenerator.AddItemBoolean(ls_Path, "boolean", true) |
See also