Enum ColorValueType
Defines the supported color value formats for the SfColorPicker component.
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public enum ColorValueType
Remarks
This enumeration specifies the different color format types that can be used to represent color values in the SfColorPicker. Each format has its own characteristics regarding opacity support and color representation method.
Fields
| Name | Description |
|---|---|
| Hex | Represents color values in hexadecimal format without opacity information. |
| Hexa | Represents color values in hexadecimal format with opacity information. |
| Hsv | Represents color values in HSV (Hue, Saturation, Value) format without opacity information. |
| Hsva | Represents color values in HSVA (Hue, Saturation, Value, Alpha) format with opacity information. |
| Opacity | Represents the opacity/alpha channel value independently of color information. |
| Rgb | Represents color values in RGB (Red, Green, Blue) format without opacity information. |
| Rgba | Represents color values in RGBA (Red, Green, Blue, Alpha) format with opacity information. |