Gets or sets the key value pair at the specified index.
The key is a string and the value is an
ICogVisionData reference.
Namespace: Cognex.VisionProAssembly: Cognex.VisionPro.CorePlus (in Cognex.VisionPro.CorePlus.dll) Version: 65.1.0.0
public virtual KeyValuePair<string, ICogVisionData> this[
int index
] { get; set; }public virtual KeyValuePair<string, ICogVisionData> this[
int index
] { get; set; }Public Overridable Property PairIndexer (
index As Integer
) As KeyValuePair(Of String, ICogVisionData)
Get
Set
Public Overridable Property PairIndexer (
index As Integer
) As KeyValuePair(Of String, ICogVisionData)
Get
Set
public:
virtual property KeyValuePair<String^, ICogVisionData^> PairIndexer[int index] {
KeyValuePair<String^, ICogVisionData^> get (int index);
void set (int index, KeyValuePair<String^, ICogVisionData^> value);
}public:
virtual property KeyValuePair<String^, ICogVisionData^> PairIndexer[int index] {
KeyValuePair<String^, ICogVisionData^> get (int index);
void set (int index, KeyValuePair<String^, ICogVisionData^> value);
}Parameters
- index
- Type: System Int32
The zero-based index of the
key value pair to get.
Return Value
Type:
KeyValuePair String,
ICogVisionData
The key value pair at the specified index.
Implements
IList T Item Int32 | Exception | Condition |
|---|
| [System.ArgumentOutOfRangeException] |
If index is less than zero, or not less than Count.
|