 | AttributeTableExtensionsGetEnumOrDefault Method |
Tries to get the enum value with the specified key from the
attribute table, and returns the passed default value if the key
could not be found.
Namespace: Slash.Collections.AttributeTablesAssembly: Slash.Collections (in Slash.Collections.dll) Version: 1.0.6018.40177
Syntaxpublic static Object GetEnumOrDefault(
this IAttributeTable attributeTable,
Object key,
Object defaultValue
)
<ExtensionAttribute>
Public Shared Function GetEnumOrDefault (
attributeTable As IAttributeTable,
key As Object,
defaultValue As Object
) As Object
public:
[ExtensionAttribute]
static Object^ GetEnumOrDefault(
IAttributeTable^ attributeTable,
Object^ key,
Object^ defaultValue
)
[<ExtensionAttribute>]
static member GetEnumOrDefault :
attributeTable : IAttributeTable *
key : Object *
defaultValue : Object -> Object
Parameters
- attributeTable
- Type: Slash.Collections.AttributeTablesIAttributeTable
Attribute table to get the value from.
- key
- Type: SystemObject
Key of the attribute to get.
- defaultValue
- Type: SystemObject
Default value to return if the specified key could not be found.
Return Value
Type:
Object
Attribute value with the specified
key, if found,
and
defaultValue otherwise.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IAttributeTable. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also