System.Nullable<Color> FilterTint { get; set; }

robot_2Generated
code_blocksInput

Description

Represents the filter-tint CSS property.

Usage

The FilterTint property is used to apply a tint color to an element. This property is nullable, meaning it can be set to a specific color or left unset (null) to indicate no tint.

Example

// Example of setting the FilterTint property
BaseStyles styles = new BaseStyles();
styles.FilterTint = new Color(1.0f, 0.5f, 0.5f, 0.5f); // RGBA color

// To remove the tint, set it to null
styles.FilterTint = null;