UndoableDictionary TKey, TValue  Item Property TIBCO Spotfire 6.0 API Reference
Gets or sets the TValue with the specified key.

Namespace: Spotfire.Dxp.Framework.DocumentModel
Assembly: Spotfire.Dxp.Framework (in Spotfire.Dxp.Framework.dll) Version: 13.19.7018.3940 (13.19.7018.3940)
Syntax

public TValue this[
	TKey key
] { get; set; }

Parameters

key
Type: TKey
The key of the element to get or set.

Return Value

Type: TValue
The element with the specified key.

Implements

IDictionary TKey, TValue  Item TKey 
Exceptions

ExceptionCondition
System ArgumentNullExceptionkey is null.
System.Collections.Generic KeyNotFoundExceptionThe property is retrieved and key is not found.
System NotSupportedExceptionThe property is set and the IDictionary TKey, TValue  is read-only.
See Also