Navigation
API > API/Plugins > API/Plugins/ImageWidgets > API/Plugins/ImageWidgets/SImageCatalog
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TOptional< TArray< FGuid > > RemoveGroup
(
FName Name |
Remove an existing group and any items in the group. | SImageCatalog.h | |
| Remove an existing group, and moves any items in the group into another group. | SImageCatalog.h |
RemoveGroup(FName)
Description
Remove an existing group and any items in the group.
| Name | RemoveGroup |
| 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 |
TOptional < TArray < FGuid > > RemoveGroup
(
FName Name
)
An empty value if a group with the given name does not exist, otherwise a list of unique identifiers for the items that were in the group and got removed from the catalog.
Parameters
| Name | Remarks |
|---|---|
| Name | Unique identifier of the group; must not be the default group name. |
RemoveGroup(FName, FName)
Description
Remove an existing group, and moves any items in the group into another group. Note that if the other group does not exist, the items get moved into the default group instead.
| Name | RemoveGroup |
| 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 |
TOptional < TArray < FGuid > > RemoveGroup
(
FName Name,
FName GroupToMoveItemsInto
)
An empty value if a group with the given name does not exist, otherwise a list of unique identifiers for the items that were in the group and got moved into the other group.
Parameters
| Name | Remarks |
|---|---|
| Name | Unique identifier of the group; must not be the default group name. |
| GroupToMoveItemsInto | Name of an already existing group in which the items from the removed group get moved into. |