Class PropertyChangingEventArgs
Represents arguments of the event which occurs when changing property.
Inheritance
System.Object
PropertyChangingEventArgs
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public class PropertyChangingEventArgs : EventArgs
Constructors
PropertyChangingEventArgs()
Declaration
public PropertyChangingEventArgs()
Properties
NewValue
Gets or sets new property value.
Declaration
public object NewValue { get; set; }
Property Value
System.Object
|
OldValue
Gets or sets old property value.
Declaration
public object OldValue { get; set; }
Property Value
System.Object
|
PropertyName
Gets or sets name of the property.
Declaration
public string PropertyName { get; set; }
Property Value
System.String
|