Interface ICustomColorFormatter
An interface to support custom formatting and parsing of Color values.
public interface ICustomColorFormatter : IFormatProvider, ICustomFormatter
- Inherited Members
Methods
- Format(string?, byte, byte, byte, byte)
A method that returns a string based on the
formatString
specified and the byte parametersr
,g
,b
, anda
, which are provided by Color
- Parse(ReadOnlySpan<char>)
A method that returns a Color value based on the
text
specified.