Description
Adds a child item of JsonStringItem type in the JSON generator object.
Applies to
Syntax
objectname.AddItemDate ( ParentItemHandle, Value )
objectname.AddItemDate ( ParentItemHandle, Key, Value )
objectname.AddItemDate ( ParentItemPath, Value )
objectname.AddItemDate ( ParentItemPath, Key, Value )
| 
                                            
                               Argument  | 
                           
                                            
                               Description  | 
                        
|---|---|
| 
                                            
                               objectname  | 
                           
                                            
                               The name of the JSONGenerator object in which you want to add an item  | 
                        
| 
                                            
                               ParentItemHandle  | 
                           
                                            
                               A long whose value is the handle of the parent item of JsonArrayItem or JsonObjectItem type  | 
                        
| 
                                            
                               ParentItemPath  | 
                           
                                            
                               A string whose value is the path of the parent item of JsonArrayItem or JsonObjectItem type  | 
                        
| 
                                            
                               Key  | 
                           
                                            
                               A string whose value is the key of the child item  | 
                        
| 
                                            
                               Value  | 
                           
                                            
                               A date whose value is the value of the child item.  | 
                        
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 date child item.
Long ll_RootArray
JsonGenerator lnv_JsonGenerator
lnv_JsonGenerator = Create JsonGenerator
// Creates an array root item
ll_RootArray = lnv_JsonGenerator.CreateJsonArray()
// Adds a date child item
lnv_JsonGenerator.AddItemDate(ll_RootArray, date("2017-12-09"))
Example 2
This example creates an object root item and adds a date child item.
Long ll_RootObject
JsonGenerator lnv_JsonGenerator
lnv_JsonGenerator = Create JsonGenerator
// Creates an object root item
ll_RootObject = lnv_JsonGenerator.CreateJsonObject ()
// Adds a date child item
lnv_JsonGenerator.AddItemDate(ll_RootObject, "date", date("2017-12-09"))
Example 3
This example creates an array root item and adds a date child item.
String ls_Path
JsonGenerator lnv_JsonGenerator
lnv_JsonGenerator = Create JsonGenerator
// Creates an array root item
lnv_JsonGenerator.CreateJsonArray()
ls_Path = "/"
// Adds a date child item
lnv_JsonGenerator.AddItemDate(ls_Path, date("2017-12-09"))
Example 4
This example creates an object root item and adds a date child item.
String ls_Path
JsonGenerator lnv_JsonGenerator
lnv_JsonGenerator = Create JsonGenerator
// Creates an object root item
lnv_JsonGenerator.CreateJsonObject ()
ls_Path = "/"
// Adds a date child item
lnv_JsonGenerator.AddItemDate(ls_Path, "date", date("2017-12-09"))
See also


