Navigation
API > API/Editor > API/Editor/UnrealEd > API/Editor/UnrealEd/FMRUList
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void RemoveMRUItem
(
const FString& Item |
Removes the specified item from the list if it exists. | MRUList.h | |
void RemoveMRUItem
(
int32 ItemIndex |
Removes the item at the specified index. | MRUList.h |
RemoveMRUItem(const FString &)
Description
Removes the specified item from the list if it exists.
| Name | RemoveMRUItem |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Public/MRUList.h |
| Include Path | #include "MRUList.h" |
| Source | /Engine/Source/Editor/UnrealEd/Private/MRUList.cpp |
void RemoveMRUItem
(
const FString & Item
)
Parameters
| Name | Remarks |
|---|---|
| Item | The item to remove. |
RemoveMRUItem(int32)
Description
Removes the item at the specified index.
| Name | RemoveMRUItem |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Public/MRUList.h |
| Include Path | #include "MRUList.h" |
| Source | /Engine/Source/Editor/UnrealEd/Private/MRUList.cpp |
void RemoveMRUItem
(
int32 ItemIndex
)
Parameters
| Name | Remarks |
|---|---|
| ItemIndex | Index of the item to remove. Must be in [0, GetMaxItems()-1]. |