Class ColorChangeEventArgs
Provides properties for describing the ColorChanged event.
Inherited Members
Namespace: Telerik.Windows.Controls.Spreadsheet.Controls
Assembly: Telerik.Windows.Controls.Spreadsheet.dll
Syntax
public class ColorChangeEventArgs : RadRoutedEventArgs
Constructors
ColorChangeEventArgs(Object, RoutedEvent, Color, Color)
Initializes a new instance of the ColorChangeEventArgs class.
Declaration
public ColorChangeEventArgs(object source, RoutedEvent routedEvent, Color oldColor, Color newColor)
Parameters
System.Object
source
The source. |
RoutedEvent
routedEvent
The routed event. |
System.Windows.Media.Color
oldColor
The old color. |
System.Windows.Media.Color
newColor
The new color. |
Properties
NewColor
Gets the new color.
Declaration
public Color NewColor { get; }
Property Value
System.Windows.Media.Color
The new color. |
OldColor
Gets the old color.
Declaration
public Color OldColor { get; }
Property Value
System.Windows.Media.Color
The old color. |