Navigation
API > API/Runtime > API/Runtime/SlateCore
Enumerates types of color values that can be held by Slate color.
Should we use the specified color? If not, then which color from the style should we use.
| Name | ESlateColorStylingMode |
| Type | enum |
| Header File | /Engine/Source/Runtime/SlateCore/Public/Styling/SlateColor.h |
| Include Path | #include "Styling/SlateColor.h" |
Syntax
enum ESlateColorStylingMode
{
UseColor_Specified,
UseColor_ColorTable,
UseColor_Foreground,
UseColor_Foreground_Subdued,
UseColor_UseStyle,
}
Values
| Name | Remarks |
|---|---|
| UseColor_Specified | Color value is stored in this Slate color. |
| UseColor_ColorTable | Color value is stored in the linked color table. |
| UseColor_Foreground | Use the widget's foreground color. |
| UseColor_Foreground_Subdued | Use the widget's subdued color. |
| UseColor_UseStyle | Use the foreground color defined in a widget specific style. |