Class ValueChangedEventArgs
Rpresents ValueChangedEventArgs
Inheritance
System.Object
System.EventArgs
ValueChangedEventArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.DLS
Assembly: Syncfusion.DLS.Base.dll
Syntax
public class ValueChangedEventArgs : EventArgs
Constructors
ValueChangedEventArgs(Object, Object)
Declaration
public ValueChangedEventArgs(object old, object newValue)
Parameters
Type | Name | Description |
---|---|---|
System.Object | old | |
System.Object | newValue |
ValueChangedEventArgs(String, Object, Object)
Declaration
public ValueChangedEventArgs(string name, object old, object newValue)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | |
System.Object | old | |
System.Object | newValue |
Properties
Empty
Represents an event with no event data.
Declaration
public static ValueChangedEventArgs Empty { get; }
Property Value
Type |
---|
ValueChangedEventArgs |
NewValue
Represents new value.
Declaration
public object NewValue { get; }
Property Value
Type |
---|
System.Object |
OldValue
Represents old value.
Declaration
public object OldValue { get; }
Property Value
Type |
---|
System.Object |
PropertyName
Gets property name.
Declaration
public string PropertyName { get; }
Property Value
Type |
---|
System.String |