AtalaObservableDictionaryTKey, TValueItem Property |
Gets or sets the element with the specified key.
Namespace:
Atalasoft.Imaging.Wpf
Assembly:
Atalasoft.dotImage.Wpf (in Atalasoft.dotImage.Wpf.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public TValue this[
TKey key
] { get; set; }
Public Default Property Item (
key As TKey
) As TValue
Get
Set
Parameters
- key
- Type: TKey
The key of the element to get or set.
Return Value
Type:
TValueThe element with the specified key.
Implements
IDictionaryTKey, TValueItemTKeyExceptions Exception | Condition |
---|
ArgumentNullException | key is null. |
KeyNotFoundException | The property is retrieved and key is not found. |
NotSupportedException | The property is set and the IDictionaryTKey, TValue is read-only. |
See Also