Navigation
API > API/Plugins > API/Plugins/ImageWidgets > API/Plugins/ImageWidgets/SImageCatalog
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Add a custom group to the catalog. | SImageCatalog.h | ||
| Add a custom group to the catalog before an already existing group. | SImageCatalog.h |
AddGroup(FName, const FText &)
Description
Add a custom group to the catalog.
| Name | AddGroup |
| 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 AddGroup
(
FName Name,
const FText & Heading
)
False if a group with the given name already exits, otherwise true.
Parameters
| Name | Remarks |
|---|---|
| Name | Unique identifier for the group. |
| Heading | Header text to be used for the group; no header will be shown if this is empty. |
AddGroup(FName, const FText &, FName)
Description
Add a custom group to the catalog before an already existing group.
| Name | AddGroup |
| 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 AddGroup
(
FName Name,
const FText & Heading,
FName BeforeGroupWithThisName
)
False if a group with the given name already exits or if the group before which the new group is supposed to be added does not exist, otherwise true.
Parameters
| Name | Remarks |
|---|---|
| Name | Unique identifier for the group. |
| Heading | Header text to be used for the group; no header will be shown if this is empty. |
| BeforeGroupWithThisName | Name of an already existing group before which the new custom group is going to be added. |