Description
Puts value into the dictionary with key as the lookup key.
Returns a pointer to the Object with lookup key prior to this call. It returns NULL if there was nothing at this key or if the dictionary was set up to delete its entries.
key and value must be non-NULL.
Visual Basic
Public Function AtPut( key As string, value As RXObject ) As RXObject
C#
public RXObject AtPut( string key, RXObject value );
Parameters
| Parameters | Description |
|---|---|
| string key | Input lookup key string to use. |
| RXObject value | Input item to add to the dictionary. |