 | AttributeTableExtensionsGetBoolOrDefault Method |
Tries to get the boolean 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 bool GetBoolOrDefault(
this IAttributeTable attributeTable,
Object key,
bool defaultValue
)
<ExtensionAttribute>
Public Shared Function GetBoolOrDefault (
attributeTable As IAttributeTable,
key As Object,
defaultValue As Boolean
) As Boolean
public:
[ExtensionAttribute]
static bool GetBoolOrDefault(
IAttributeTable^ attributeTable,
Object^ key,
bool defaultValue
)
[<ExtensionAttribute>]
static member GetBoolOrDefault :
attributeTable : IAttributeTable *
key : Object *
defaultValue : bool -> bool
Parameters
- attributeTable
- Type: Slash.Collections.AttributeTablesIAttributeTable
Attribute table to get the value from.
- key
- Type: SystemObject
Key of the attribute to get.
- defaultValue
- Type: SystemBoolean
Default value to return if the specified key could not be found.
Return Value
Type:
Boolean
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