Class PropertyEventArgs<T>
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.Windows.Diagrams.Core
Assembly: Telerik.Windows.Diagrams.Core.dll
Syntax
public class PropertyEventArgs<T> : PropertyEventArgs
Type Parameters
T
|
Constructors
PropertyEventArgs(String, T, T)
Initializes a new instance of the PropertyEventArgs class.
Declaration
public PropertyEventArgs(string propertyName, T oldValue, T newValue)
Parameters
System.String
propertyName
Name of the property. |
T
oldValue
The old value. |
T
newValue
The new value. |
Properties
NewValue
Gets or sets the new value.
Declaration
public T NewValue { get; set; }
Property Value
T
The new value. |
OldValue
Gets or sets the old value.
Declaration
public T OldValue { get; set; }
Property Value
T
The old value. |