Class ColorScheme
Assembly: Terminal.Gui.dll
Syntax
public class ColorScheme : IEquatable<ColorScheme>
Properties
|
Edit this page
View Source
Disabled
The default foreground and background color for text, when the view is disabled.
Declaration
public Attribute Disabled { get; set; }
Property Value
|
Edit this page
View Source
Focus
The foreground and background color for text when the view has the focus.
Declaration
public Attribute Focus { get; set; }
Property Value
|
Edit this page
View Source
HotFocus
The foreground and background color for text when the view is highlighted (hot) and has focus.
Declaration
public Attribute HotFocus { get; set; }
Property Value
|
Edit this page
View Source
HotNormal
The foreground and background color for text when the view is highlighted (hot).
Declaration
public Attribute HotNormal { get; set; }
Property Value
|
Edit this page
View Source
Normal
The foreground and background color for text when the view is not focused, hot, or disabled.
Declaration
public Attribute Normal { get; set; }
Property Value
Methods
|
Edit this page
View Source
Equals(object)
Declaration
public override bool Equals(object obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
| Type |
Description |
| bool |
true if the two objects are equal |
Overrides
|
Edit this page
View Source
Equals(ColorScheme)
Declaration
public bool Equals(ColorScheme other)
Parameters
Returns
| Type |
Description |
| bool |
true if the two objects are equal |
|
Edit this page
View Source
GetHashCode()
Returns a hashcode for this instance.
Declaration
public override int GetHashCode()
Returns
| Type |
Description |
| int |
hashcode for this instance |
Overrides
Operators
|
Edit this page
View Source
operator ==(ColorScheme, ColorScheme)
Declaration
public static bool operator ==(ColorScheme left, ColorScheme right)
Parameters
Returns
| Type |
Description |
| bool |
true if the two objects are equivalent |
|
Edit this page
View Source
operator !=(ColorScheme, ColorScheme)
Declaration
public static bool operator !=(ColorScheme left, ColorScheme right)
Parameters
Returns
| Type |
Description |
| bool |
true if the two objects are not equivalent |
Implements