Class ValueChangingEventArgs
Provides information about the new value that is edited inside the active cell editor.
Inheritance
System.Object
ValueChangingEventArgs
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class ValueChangingEventArgs : CancelEventArgs
Constructors
ValueChangingEventArgs(Object)
Declaration
public ValueChangingEventArgs(object newValue)
Parameters
System.Object
newValue
|
ValueChangingEventArgs(Object, Object)
Declaration
public ValueChangingEventArgs(object newValue, object oldValue)
Parameters
System.Object
newValue
|
System.Object
oldValue
|
Properties
NewValue
Gets the new value that is edited by the active editor.
Declaration
public object NewValue { get; set; }
Property Value
System.Object
|
OldValue
Gets the new value that is edited by the active editor.
Declaration
public object OldValue { get; set; }
Property Value
System.Object
|