Class RadPropertyEventArgs
Encapsulates all the data associated with a change in a Property
Inheritance
Inherited Members
Namespace: Telerik.Charting
Assembly: Telerik.WinControls.dll
Syntax
public class RadPropertyEventArgs : EventArgs
Constructors
RadPropertyEventArgs(Int32, Object, Object)
Initializes a new instance of the Rad
Declaration
public RadPropertyEventArgs(int key, object oldValue, object newValue)
Parameters
System. The key. |
System. The old value. |
System. The new value. |
RadPropertyEventArgs(String, Object, Object)
Initializes a new instance of the Rad
Declaration
public RadPropertyEventArgs(string name, object oldValue, object newValue)
Parameters
System. The name. |
System. The old value. |
System. 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.
|
Key
Gets the key of the property associated with the event.
Declaration
public int Key { get; }
Property Value
System.
|
NewValue
Gets or sets the new value of the associated property.
Declaration
public object NewValue { get; set; }
Property Value
System.
|
OldValue
Gets the old value of the associated property.
Declaration
public object OldValue { get; }
Property Value
System.
|
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.
|