CollectionItem(String) Property

Returns a specific element of a Collection object either by position or by key. Read-only.

Definition

Namespace: inmydata.WindowsForms.Library
Assembly: inmydata.WindowsForms.Library (in inmydata.WindowsForms.Library.dll) Version: 1.0.0.0 (1.0.0.0)
C#
public Object this[
	string Key
] { get; }

Parameters

Key  String
A unique String expression that specifies a key string that can be used, instead of a positional index, to access an element of the collection. Key must correspond to the Key argument specified when the element was added to the collection.

Return Value

Object
Returns a specific element of a Collection object either by position or by key. Read-only.

See Also