Insert the given item at the specified index.
Assembly: Cognex.Vision.Core.Net (in Cognex.Vision.Core.Net.dll) Version: 9.24.0.0
Syntax
Parameters
- index
- Type: System Int32
The zero-based index at which to insert the item.
- value
- Type: Cognex.Vision ITool
The item to be inserted into the collection.
Implements
IList T Insert(Int32, T)Exceptions
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | If index is less than zero or index is greater than Count. |
Remarks
InsertingItem Raises before the item is inserted. InsertedItem Raises after the item is inserted.
See Also