Copies the whole content of Key-Value Store to all Serieses attached to it.
Parameters
Data Type
Description
-
-
-
Returns
Nothing
-
MoveToSeries()
Copies the whole content of Key-Value Store to all Serieses attached to it and deletes the rows in the Key-Value Store.
Parameters
Data Type
Description
-
-
-
Returns
Nothing
-
ItemPurgeOld(Milliseconds)
Removes all the items that were created\modified before the time specified in the parameter.
Parameters
Data Type
Description
Milliseconds
Int
Time in milliseconds that determine the key-value pair to be removed.
Returns
Nothing
-
ItemsCount()
Returns count all key-value pairs.
Parameters
Data Type
Description
-
-
-
Returns
Int
Number of key-value pairs
ItemsClear()
Removes all the items from the component.
Parameters
Data Type
Description
-
-
-
Returns
Nothing
-
ItemInsert(Key,Value)
Inserts given key-value pair to the component. In the Allow Repeated Key is set to False
this function will update existing key-value pair with the new value or insert a new one if the key is not present.
Parameters
Data Type
Description
Key
String
String representing key of the pair.
Value
String
String representing value of the pair.
Returns
Nothing
-
ItemInsert(Value)
Inserts given key-value pair to the component. A unique key is generated automatically.
Parameters
Data Type
Description
Value
String
String representing value of the pair.
Returns
Nothing
-
ItemDelete(Key)
Removes all the items that are matching a given Key.
Parameters
Data Type
Description
Key
String
Key(s) to remove from the component.
Returns
Nothing
-
ItemGet(Key)
Returns the first value item assigned with a given Key.