Navigation
API > API/Runtime > API/Runtime/SlateCore
Text transformation policy that can be applied to the text before displaying it.
| Name | ETextTransformPolicy |
| Type | enum |
| Header File | /Engine/Source/Runtime/SlateCore/Public/Styling/SlateTypes.h |
| Include Path | #include "Styling/SlateTypes.h" |
Syntax
enum ETextTransformPolicy
{
None = 0,
ToLower,
ToUpper,
}
Values
| Name | Remarks |
|---|---|
| None | No transform, just use the given text as-is |
| ToLower | Convert the text to lowercase for display |
| ToUpper | Convert the text to uppercase for display |