ESlateColorStylingMode

Enumerates types of color values that can be held by Slate color.

Choose your operating system:

Windows

macOS

Linux

References

Module

SlateCore

Header

/Engine/Source/Runtime/SlateCore/Public/Styling/SlateColor.h

Include

#include "Styling/SlateColor.h"

Syntax

enum ESlateColorStylingMode
{
    UseColor_Specified,
    UseColor_ColorTable,
    UseColor_Foreground,
    UseColor_Foreground_Subdued,
    UseColor_UseStyle,
}

Values

Name

Description

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.

Remarks

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.