Navigation
API > API/Runtime > API/Runtime/SlateCore
Enumerates horizontal alignment options, i.e. for widget slots.
| Name | EHorizontalAlignment |
| Type | enum |
| Header File | /Engine/Source/Runtime/SlateCore/Public/Types/SlateEnums.h |
| Include Path | #include "Types/SlateEnums.h" |
Syntax
enum EHorizontalAlignment
{
HAlign_Fill,
HAlign_Left,
HAlign_Center,
HAlign_Right,
}
Values
| Name | Remarks |
|---|---|
| HAlign_Fill | Fill the entire width. |
| HAlign_Left | Left-align. |
| HAlign_Center | Center-align. |
| HAlign_Right | Right-align. |