Class
DataFormEditorValueChangedEventArgs

Event arguments providing additional information about a value change in a DataFormEditor.

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

cs-api-definition
public class DataFormEditorValueChangedEventArgs : EventArgs

Inheritance: objectEventArgsDataFormEditorValueChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

DataFormEditorValueChangedEventArgs(string, object, object)

Initializes a new instance of the DataFormEditorValueChangedEventArgs class.

Declaration

cs-api-definition
public DataFormEditorValueChangedEventArgs(string propertyName, object propertyValue, object editorValue)

Parameters

propertyName

string

Specifies the name of the changed property.

propertyValue

object

Specifies the current value of the property in the model.

editorValue

object

Specifies the modified value of the property in the editor.

Properties

EditorValue

Gets the modified value of the property in the editor.

Declaration

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

Property Value

object

PropertyName

Gets the name of the changed property.

Declaration

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

Property Value

string

PropertyValue

Gets the current value of the property in the model.

Declaration

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

Property Value

object