In This Article

PropertyModelValueChangeEventArgs Class

Provides event arguments for IPropertyModel value change events.

public class PropertyModelValueChangeEventArgs : CancelRoutedEventArgs
Inheritance:
Object EventArgs RoutedEventArgs CancelRoutedEventArgs Object

Constructors

PropertyModelValueChangeEventArgs(IPropertyModel, Object)

Initializes a new instance of the PropertyModelValueChangeEventArgs class.

public PropertyModelValueChangeEventArgs(IPropertyModel propertyModel, object value)
Parameter Type Description
propertyModel IPropertyModel

The IPropertyModel for the property whose value is being updated.

value Object

The updated property value.

Properties

PropertyModel

Gets the IPropertyModel for the property whose value is being updated.

public IPropertyModel PropertyModel { get; }

Property Value

IPropertyModel:

The IPropertyModel for the property whose value is being updated.

Value

Gets the updated property value.

public object Value { get; }

Property Value

Object:

The updated property value.

Inherited Members