BindableProperty.CoerceValueDelegate<TPropertyType> 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.
Strongly-typed delegate for BindableProperty.CoerceValue.
public delegate TPropertyType BindableProperty.CoerceValueDelegate<TPropertyType>(BindableObject bindable, TPropertyType value);
type BindableProperty.CoerceValueDelegate<'PropertyType> = delegate of BindableObject * 'PropertyType -> 'PropertyType
Type Parameters
- TPropertyType
The type of the bound property.
Parameters
- bindable
- BindableObject
The bindable object that contains the property.
- value
- TPropertyType
The value to coerce.
Return Value
TPropertyType