Class PaletteTileEventArgs
Provides information about the OnTileRender
event callback.
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class PaletteTileEventArgs : Object
Remarks
This class contains event data for palette tile rendering, allowing customization of individual color tiles in palette mode.
Constructors
PaletteTileEventArgs()
Declaration
public PaletteTileEventArgs()
Properties
PresetName
Gets or sets the preset color group name for the tile being rendered.
Declaration
public string PresetName { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the preset name (e.g., "Custom Colors", "Theme Colors"). The default value is |
Remarks
This property identifies which preset color group the current tile belongs to when rendering palette tiles. It can be used to apply different styling or behavior based on the color group.
Value
Gets or sets the color value of the tile being rendered.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string representing the color value in hexadecimal format. The default value is |
Remarks
This property contains the actual color value that will be displayed in the palette tile. It can be used to customize the tile appearance or add additional information based on the color value.