Class DataFormEditorValueChangedEventArgs
Event arguments providing additional information about a value change in a DataFormEditor.
Inheritance
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class DataFormEditorValueChangedEventArgs : EventArgs
Constructors
DataFormEditorValueChangedEventArgs(String, Object, Object)
Initializes a new instance of the DataFormEditorValueChangedEventArgs class.
Declaration
public DataFormEditorValueChangedEventArgs(string propertyName, object propertyValue, object editorValue)
Parameters
System.String
propertyName
Specifies the name of the changed property. |
System.Object
propertyValue
Specifies the current value of the property in the model. |
System.Object
editorValue
Specifies the modified value of the property in the editor. |
Properties
EditorValue
Gets the modified value of the property in the editor.
Declaration
public object EditorValue { get; }
Property Value
System.Object
|
PropertyName
Gets the name of the changed property.
Declaration
public string PropertyName { get; }
Property Value
System.String
|
PropertyValue
Gets the current value of the property in the model.
Declaration
public object PropertyValue { get; }
Property Value
System.Object
|