 | BcfBindingSourceCollectionTryGetValue Method |
[This is preliminary documentation and is subject to change.]
Gets the value associated with the specified key.
Namespace:
CalculationWorks.ViewModel.Forms
Assembly:
CalculationWorks.ViewModel.Forms (in CalculationWorks.ViewModel.Forms.dll) Version: 4.0.0-beta7
Syntaxpublic bool TryGetValue(
string key,
out BcfBindingSource value
)
Public Function TryGetValue (
key As String,
<OutAttribute> ByRef value As BcfBindingSource
) As Boolean
Parameters
- key
- Type: SystemString
The key of the value to get. - value
- Type: CalculationWorks.ViewModel.FormsBcfBindingSource
When this method returns, contains the value associated with the specified key, if the key is found; otherwise, the default value for the type of the value parameter. This parameter is passed uninitialized.
Return Value
Type:
Booleantrue if the collection contains an element with the specified key; otherwise
false.
See Also