Class
MappedPropertyUpdatingEventArgs

Contains information about the MappedPropertyUpdating event. Cancellable.

Definition

Namespace:Telerik.WinControls.UI.SlideView

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public class MappedPropertyUpdatingEventArgs : HandledEventArgs

Inheritance: objectEventArgsHandledEventArgsMappedPropertyUpdatingEventArgs

Inherited Members HandledEventArgs.HandledEventArgs.Empty

Constructors

MappedPropertyUpdatingEventArgs(object, RadProperty, VisualElement, string, object)

Initializes a new instance of the MappedPropertyUpdatingEventArgs class.

Declaration

cs-api-definition
public MappedPropertyUpdatingEventArgs(object value, RadProperty property, VisualElement element, string propertyName, object dataObject)

Parameters

value

object

property

RadProperty

element

VisualElement

propertyName

string

dataObject

object

Properties

DataObject

Gets the data bound object.

Declaration

cs-api-definition
public object DataObject { get; }

Property Value

object

Element

Gets the element from the template.

Declaration

cs-api-definition
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

cs-api-definition
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

cs-api-definition
public string PropertyName { get; }

Property Value

string

PropertyType

Get the type of the property that is about to be set.

Declaration

cs-api-definition
public Type PropertyType { get; }

Property Value

Type

Value

Gets or sets the value that will be applied to the Property of the template Element.

Declaration

cs-api-definition
public object Value { get; set; }

Property Value

object