  | IRecordAddItem Method  | 
 
            Add an item for a given key and value at the end of the record.
            
 
    Namespace: 
   Mavidian.DataConveyer.Entities.KeyVal
    Assembly:
   DataConveyer (in DataConveyer.dll) Version: 3.4.6+1324144ff7
SyntaxIItem AddItem(
	string key,
	Object value
)
Function AddItem ( 
	key As String,
	value As Object
) As IItem
Parameters
- key
 - Type: SystemString
The key of an item to add. - value
 - Type: SystemObject
The value of an item to add. 
Return Value
Type: 
IItemThe item just added or void item if key already existed (and thus no item was added); if item was not added because additions/removals are disallowed return null.
See Also