Navigation
API > API/Runtime > API/Runtime/Slate
SProgressBar Fill Type
| Name | EProgressBarFillType::Type |
| Type | enum |
| Header File | /Engine/Source/Runtime/Slate/Public/Widgets/Notifications/SProgressBar.h |
| Include Path | #include "Widgets/Notifications/SProgressBar.h" |
Syntax
namespace EProgressBarFillType
{
enum Type
{
LeftToRight,
RightToLeft,
FillFromCenter,
FillFromCenterHorizontal,
FillFromCenterVertical,
TopToBottom,
BottomToTop,
}
}
Values
| Name | Remarks |
|---|---|
| LeftToRight | Will fill up from the left side to the right |
| RightToLeft | Will fill up from the right side to the left side |
| FillFromCenter | Will scale up from the midpoint to the outer edges both vertically and horizontally |
| FillFromCenterHorizontal | Will fill up from the centerline to the outer edges horizontally |
| FillFromCenterVertical | Will fill up from the centerline to the outer edges vertically |
| TopToBottom | Will fill up from the top to the the bottom |
| BottomToTop | Will fill up from the bottom to the the top |