BindableProperty.CoerceValueDelegate Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Delegate for BindableProperty.CoerceValue.
public delegate object BindableProperty.CoerceValueDelegate(BindableObject bindable, object value);
type BindableProperty.CoerceValueDelegate = delegate of BindableObject * obj -> obj
Parameters
- bindable
- BindableObject
The bindable object that contains the property.
- value
- System.Object
The value to coerce.
Return Value
System.Object