Class ColorChangedEventArgs

Definition

Namespace:
ElmSharp
Assembly:
ElmSharp.dll
API Level:
preview

It inherits System.EventArgs. Event ColorChanged of the ColorSelector contains ColorChangedEventArgs as a parameter. Refer to ColorSelectortype.

C#
Copy
public class ColorChangedEventArgs : EventArgs
Inheritance
ColorChangedEventArgs

Constructors

View Source

ColorChangedEventArgs(Color, Color)

Creates and initializes a new instance of the ColorChangedEventArgs class.

Declaration
C#
Copy
public ColorChangedEventArgs(Color oldColor, Color newColor)
Parameters
Type Name Description
Color oldColor

Old color.

Color newColor

New color.

API Level: preview

Properties

View Source

NewColor

Gets a new color in the color changed event.

Declaration
C#
Copy
public Color NewColor { get; }
Property Value
Type Description
Color
API Level: preview
View Source

OldColor

Gets an old color in the color changed event.

Declaration
C#
Copy
public Color OldColor { get; }
Property Value
Type Description
Color
API Level: preview