Navigation
API > API/Plugins > API/Plugins/ImageWidgets > API/Plugins/ImageWidgets/SImageCatalog
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Move an already existing item before another item within the same group. | SImageCatalog.h | ||
| Move an already existing item to another group. | SImageCatalog.h | ||
| Move an already existing item to another group, before another item within that group. | SImageCatalog.h |
MoveItem(const FGuid &, const FGuid &)
Description
Move an already existing item before another item within the same group.
| Name | MoveItem |
| Type | function |
| Header File | /Engine/Plugins/Experimental/ImageWidgets/Source/ImageWidgets/Public/SImageCatalog.h |
| Include Path | #include "SImageCatalog.h" |
| Source | /Engine/Plugins/Experimental/ImageWidgets/Source/ImageWidgets/Private/SImageCatalog.cpp |
bool MoveItem
(
const FGuid & Guid,
const FGuid & BeforeItemWithThisGuid
)
False if the item to be moved or the item before which it should be moved does not exist or if both are not in the same group, otherwise true.
Parameters
| Name | Remarks |
|---|---|
| Guid | The unique identifier of the existing item that should be moved. |
| BeforeItemWithThisGuid | Unique identifier of the other item before which the item should be moved. |
MoveItem(const FGuid &, FName)
Description
Move an already existing item to another group.
| Name | MoveItem |
| Type | function |
| Header File | /Engine/Plugins/Experimental/ImageWidgets/Source/ImageWidgets/Public/SImageCatalog.h |
| Include Path | #include "SImageCatalog.h" |
| Source | /Engine/Plugins/Experimental/ImageWidgets/Source/ImageWidgets/Private/SImageCatalog.cpp |
bool MoveItem
(
const FGuid & Guid,
FName Group
)
False if an item with the given unique identifier does not exist, a group with the given name does not exist, or the item is already in the given group, otherwise true.
Parameters
| Name | Remarks |
|---|---|
| Guid | The unique identifier of the existing item that should be moved. |
| Group | Name of the existing group to which the item should be moved. |
MoveItem(const FGuid &, FName, const FGuid &)
Description
Move an already existing item to another group, before another item within that group.
| Name | MoveItem |
| Type | function |
| Header File | /Engine/Plugins/Experimental/ImageWidgets/Source/ImageWidgets/Public/SImageCatalog.h |
| Include Path | #include "SImageCatalog.h" |
| Source | /Engine/Plugins/Experimental/ImageWidgets/Source/ImageWidgets/Private/SImageCatalog.cpp |
bool MoveItem
(
const FGuid & Guid,
FName Group,
const FGuid & BeforeItemWithThisGuid
)
False if an item with the given unique identifier does not exist, a group with the given name does not exist, or the item is already in the given group, otherwise true.
Parameters
| Name | Remarks |
|---|---|
| Guid | The unique identifier of the existing item that should be moved. |
| Group | Name of the existing group to which the item should be moved. |
| BeforeItemWithThisGuid | Unique identifier of the other item before which the item should be moved. |