Share via


BindableProperty.CoerceValueDelegate Delegate

Definition

Represents a delegate that is called to coerce a property value to a valid range or state.

public delegate object BindableProperty.CoerceValueDelegate(BindableObject bindable, object value);
type BindableProperty.CoerceValueDelegate = delegate of BindableObject * obj -> obj
Public Delegate Function BindableProperty.CoerceValueDelegate(bindable As BindableObject, value As Object) As Object 

Parameters

bindable
BindableObject

The BindableObject instance that owns the property.

value
Object

The value to be coerced.

Return Value

The coerced value.

Applies to