Interface IColorNameResolver | Terminal.Gui v2 (original) (raw)
Namespace
Assembly
Terminal.Gui.dll
When implemented by a class, allows mapping Color to human understandable name (e.g. w3c color names) and vice versa.
public interface IColorNameResolver
Methods
Returns the names of all known colors.
TryNameColor(Color, out string?)
Returns true if color
is a recognized color. In which case name
will be the name of the color and return value will be true otherwise false.
TryParseColor(ReadOnlySpan, out Color)
Returns true if name
is a recognized color. In which case color
will be the color the name corresponds to otherwise returns false.