Navigation
API > API/Runtime > API/Runtime/SlateCore
Enum to describe how windows are sized
| Name | ESizingRule |
| Type | enum |
| Header File | /Engine/Source/Runtime/SlateCore/Public/Widgets/SWindow.h |
| Include Path | #include "Widgets/SWindow.h" |
Syntax
enum ESizingRule
{
FixedSize,
Autosized,
UserSized,
}
Values
| Name | Remarks |
|---|---|
| FixedSize | The windows size fixed and cannot be resized |
| Autosized | The window size is computed from its content and cannot be resized by users |
| UserSized | The window can be resized by users |