 | HierarchicalAttributeTableItem Property |
Gets or sets the attribute with the specified key. If the key is looked up and can't be found, the parents of this are
checked, in order.
If no attribute is found when it should be returned, an exception is thrown.
Namespace: Slash.Collections.AttributeTablesAssembly: Slash.Collections (in Slash.Collections.dll) Version: 1.0.6018.40177
Syntaxpublic Object this[
Object key
] { get; set; }
Public Default Property Item (
key As Object
) As Object
Get
Set
public:
virtual property Object^ default[Object^ key] {
Object^ get (Object^ key) sealed;
void set (Object^ key, Object^ value) sealed;
}
abstract Item : Object with get, set
override Item : Object with get, set
Parameters
- key
- Type: SystemObject
Attribute key.
Return Value
Type:
Object Value of attribute with the specified key.
Implements
IAttributeTableItemObject
ExceptionsException | Condition |
---|
KeyNotFoundException | If the key is looked up and can't be found in this table or any parents. |
See Also