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