Represents the filter-tint
CSS property.
Represents the filter-tint
CSS property.
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 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;