Class DataFormEditorValueChangedEventArgs
Event arguments providing additional information about a value change in a Data
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 Data
Declaration
public DataFormEditorValueChangedEventArgs(string propertyName, object propertyValue, object editorValue)
Parameters
System. Specifies the name of the changed property. |
System. Specifies the current value of the property in the model. |
System. 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.
|
PropertyName
Gets the name of the changed property.
Declaration
public string PropertyName { get; }
Property Value
System.
|
PropertyValue
Gets the current value of the property in the model.
Declaration
public object PropertyValue { get; }
Property Value
System.
|