Navigation
API > API/Runtime > API/Runtime/Slate > API/Runtime/Slate/FMenuBarBuilder
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void AddPullDownMenu
(
const TAttribute< FText >& InMenuLabel, |
Adds a pull down menu | Framework/MultiBox/MultiBoxBuilder.h | |
void AddPullDownMenu
(
const TAttribute< FText >& InMenuLabel, |
Adds a pull down menu | Framework/MultiBox/MultiBoxBuilder.h |
AddPullDownMenu(const TAttribute< FText > &, const TAttribute< FText > &, const FNewMenuDelegate &, FName, FName)
Description
Adds a pull down menu
| Name | AddPullDownMenu |
| Type | function |
| Header File | /Engine/Source/Runtime/Slate/Public/Framework/MultiBox/MultiBoxBuilder.h |
| Include Path | #include "Framework/MultiBox/MultiBoxBuilder.h" |
| Source | /Engine/Source/Runtime/Slate/Private/Framework/MultiBox/MultiBoxBuilder.cpp |
void AddPullDownMenu
(
const TAttribute < FText > & InMenuLabel,
const TAttribute < FText > & InToolTip,
const FNewMenuDelegate & InPullDownMenu,
FName InExtensionHook,
FName InTutorialHighlightName
)
Parameters
| Name | Remarks |
|---|---|
| InMenuLabel | The text that should be shown for the menu |
| InToolTip | The tooltip that should be shown when the menu is hovered over |
| InPullDownMenu | Pull down menu object for the menu to add. |
AddPullDownMenu(const TAttribute< FText > &, const TAttribute< FText > &, const FOnGetContent &, FName, FName)
Description
Adds a pull down menu
| Name | AddPullDownMenu |
| Type | function |
| Header File | /Engine/Source/Runtime/Slate/Public/Framework/MultiBox/MultiBoxBuilder.h |
| Include Path | #include "Framework/MultiBox/MultiBoxBuilder.h" |
| Source | /Engine/Source/Runtime/Slate/Private/Framework/MultiBox/MultiBoxBuilder.cpp |
void AddPullDownMenu
(
const TAttribute < FText > & InMenuLabel,
const TAttribute < FText > & InToolTip,
const FOnGetContent & InMenuContentGenerator,
FName InExtensionHook,
FName InTutorialHighlightName
)
Parameters
| Name | Remarks |
|---|---|
| InMenuLabel | The text that should be shown for the menu |
| InToolTip | The tooltip that should be shown when the menu is hovered over |
| InMenuContentGenerator | Delegate that generates a widget for this pulldown menu's content. Called when the menu is summoned. |