Navigation
API > API/Runtime > API/Runtime/Slate
| Name | ETabState::Type |
| Type | enum |
| Header File | /Engine/Source/Runtime/Slate/Public/Framework/Docking/TabManager.h |
| Include Path | #include "Framework/Docking/TabManager.h" |
Syntax
namespace ETabState
{
enum Type
{
OpenedTab = 0x1 << 0,
ClosedTab = 0x1 << 1,
SidebarTab = 0x1 << 2,
InvalidTab = 0x1 << 3,
}
}
Values
| Name | Remarks |
|---|---|
| OpenedTab | |
| ClosedTab | |
| SidebarTab | |
| InvalidTab | InvalidTab refers to tabs that were not recognized by the Editor (e.g., LiveLink when its plugin its disabled). |