EAPCollectionBaseAddAt Method |
Adds an item to the collection at the specified index. To append an item use -1 or
the collection item count as the index.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax protected int AddAt(
int index,
string key,
Object Value,
CollectionAddFlags Attributes
)
Protected Function AddAt (
index As Integer,
key As String,
Value As Object,
Attributes As CollectionAddFlags
) As Integer
Parameters
- index
- Type: SystemInt32
The position in the collection into which to insert the item (-1 or current item count means first). - key
- Type: SystemString
The key for the item (case-insensitive). - Value
- Type: SystemObject
The value of the item. - Attributes
- Type: NetQuarryCollectionAddFlags
Modifiers for Add behavior.
Return Value
Type:
Int32The internal ArrayList index at which the value has been added.
See Also