Class MappedPropertyUpdatingEventArgs
Contains information about the MappedPropertyUpdating event. Cancellable.
Inheritance
Namespace: Telerik.WinControls.UI.SlideView
Assembly: Telerik.WinControls.UI.dll
Syntax
public class MappedPropertyUpdatingEventArgs : HandledEventArgs
Constructors
MappedPropertyUpdatingEventArgs(Object, RadProperty, VisualElement, String, Object)
Initializes a new instance of the MappedPropertyUpdatingEventArgs class.
Declaration
public MappedPropertyUpdatingEventArgs(object value, RadProperty property, VisualElement element, string propertyName, object dataObject)
Parameters
System.Object
value
|
RadProperty
property
|
VisualElement
element
|
System.String
propertyName
|
System.Object
dataObject
|
Properties
DataObject
Gets the data bound object.
Declaration
public object DataObject { get; }
Property Value
System.Object
|
Element
Gets the element from the template.
Declaration
public VisualElement Element { get; }
Property Value
VisualElement
|
Property
Gets or sets the property that of the template Element that will be set to the given value.
Declaration
public RadProperty Property { get; }
Property Value
RadProperty
|
PropertyName
Gets the name of the property that is used to extract the value from the data bound object.
Declaration
public string PropertyName { get; }
Property Value
System.String
|
PropertyType
Get the type of the property that is about to be set.
Declaration
public Type PropertyType { get; }
Property Value
System.Type
|
Value
Declaration
public object Value { get; set; }
Property Value
System.Object
|