Navigation
API > API/Runtime > API/Runtime/Slate
Where in relation to an extension hook should you apply your extension
| Name | EExtensionHook::Position |
| Type | enum |
| Header File | /Engine/Source/Runtime/Slate/Public/Framework/MultiBox/MultiBoxExtender.h |
| Include Path | #include "Framework/MultiBox/MultiBoxExtender.h" |
Syntax
namespace EExtensionHook
{
enum Position
{
Before,
After,
First,
}
}
Values
| Name | Remarks |
|---|---|
| Before | Inserts the extension before the element or section. |
| After | Inserts the extension after the element or section. |
| First | Sections only. Inserts the extension at the beginning of the section. |