Class ColorPickerEventArgs
Provides information about the in ValueChange
and Selected
event callback.
Inheritance
System.Object
ColorPickerEventArgs
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class ColorPickerEventArgs : Object
Constructors
ColorPickerEventArgs()
Declaration
public ColorPickerEventArgs()
Properties
CurrentValue
Gets or sets a value that indicates the the current color value details.
Declaration
public ColorPickerValue CurrentValue { get; set; }
Property Value
Type | Description |
---|---|
ColorPickerValue | A ColorPickerValue object that represents the current color value details. |
Name
Gets or sets a value that indicates the name of the event.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
PreviousValue
Gets or sets a value that indicates the previous color value details.
Declaration
public ColorPickerValue PreviousValue { get; set; }
Property Value
Type | Description |
---|---|
ColorPickerValue | A ColorPickerValue object that represents the previous color value details. |