Class RadPropertyEventArgs
Encapsulates all the data associated with a change in a PropertyBagObject property store.
Inheritance
Namespace: Telerik.Charting
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class RadPropertyEventArgs : EventArgs
Constructors
RadPropertyEventArgs(Int32, Object, Object)
Initializes a new instance of the RadPropertyEventArgs class.
Declaration
public RadPropertyEventArgs(int key, object oldValue, object newValue)
Parameters
System.Int32
key
The key. |
System.Object
oldValue
The old value. |
System.Object
newValue
The new value. |
RadPropertyEventArgs(String, Object, Object)
Initializes a new instance of the RadPropertyEventArgs class.
Declaration
public RadPropertyEventArgs(string name, object oldValue, object newValue)
Parameters
System.String
name
The name. |
System.Object
oldValue
The old value. |
System.Object
newValue
The new value. |
Properties
Cancel
Gets or sets a value indicating whether the property change can be accepted. Valid during the Changing pass.
Declaration
public bool Cancel { get; set; }
Property Value
System.Boolean
|
Key
Gets the key of the property associated with the event.
Declaration
public int Key { get; }
Property Value
System.Int32
|
NewValue
Gets or sets the new value of the associated property.
Declaration
public object NewValue { get; set; }
Property Value
System.Object
|
OldValue
Gets the old value of the associated property.
Declaration
public object OldValue { get; }
Property Value
System.Object
|
PropertyName
Gets the name of the property that has changed. This member is not set if the property is associated with a valid key.
Declaration
public string PropertyName { get; }
Property Value
System.String
|