Class ExtendedPropertyChangedEventArgs
Arguments of the property changed event.
Inheritance
System.Object
System.EventArgs
ExtendedPropertyChangedEventArgs
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.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public class ExtendedPropertyChangedEventArgs : EventArgs
Constructors
ExtendedPropertyChangedEventArgs(ExtendedProperty, Object, Object)
Initializes a new instance of the ExtendedPropertyChangedEventArgs class.
Declaration
public ExtendedPropertyChangedEventArgs(ExtendedProperty property, object oldValue, object newValue)
Parameters
ExtendedProperty
property
Extended property which has been changed. |
System.Object
oldValue
Old property value. |
System.Object
newValue
New property value. |
Properties
NewValue
Gets new value.
Declaration
public object NewValue { get; }
Property Value
System.Object
|
OldValue
Gets old value.
Declaration
public object OldValue { get; }
Property Value
System.Object
|
Property
Gets property which has been changed.
Declaration
public ExtendedProperty Property { get; }
Property Value
ExtendedProperty
|