BindableProperty.BindingPropertyChangingDelegate Delegate

Definition

Delegate for BindableProperty.PropertyChanging.

public delegate void BindableProperty.BindingPropertyChangingDelegate(BindableObject bindable, object oldValue, object newValue);
type BindableProperty.BindingPropertyChangingDelegate = delegate of BindableObject * obj * obj -> unit

Parameters

bindable
BindableObject

The bindable object that contains the property.

oldValue
Object

The old property value.

newValue
Object

The new property value.

Applies to