New to Telerik UI for .NET MAUIStart a free 30-day trial

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

Definition

Namespace:Telerik.Maui.Controls

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class DataFormEditorValueChangedEventArgs : EventArgs

Inheritance: objectEventArgsDataFormEditorValueChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the DataFormEditorValueChangedEventArgs class.

C#
public DataFormEditorValueChangedEventArgs(string propertyName, object propertyValue, object editorValue)
Parameters:propertyNamestring

Specifies the name of the changed property.

propertyValueobject

Specifies the current value of the property in the model.

editorValueobject

Specifies the modified value of the property in the editor.

Properties

Gets the modified value of the property in the editor.

C#
public object EditorValue { get; }

Gets the name of the changed property.

C#
public string PropertyName { get; }

Gets the current value of the property in the model.

C#
public object PropertyValue { get; }