Navigation
API > API/Developer > API/Developer/ToolWidgets
Flags that specify which edges of an SDraggableBoxOverlay are user-resizable.
| Name | UE::ToolWidgets::EResizeEdges |
| Type | enum |
| Header File | /Engine/Source/Developer/ToolWidgets/Public/Overlay/SDraggableBoxOverlay.h |
| Include Path | #include "Overlay/SDraggableBoxOverlay.h" |
Syntax
namespace UE
{
namespace ToolWidgets
{
enum EResizeEdges
{
None = 0,
Left = 1 << 0,
Right = 1 << 1,
Top = 1 << 2,
Bottom = 1 << 3,
All = Left | Right | Top | Bottom,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| Left | |
| Right | |
| Top | |
| Bottom | |
| All |