Navigation
API > API/Plugins > API/Plugins/ImageWidgets > API/Plugins/ImageWidgets/SImageCatalog
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool AddItem
(
const TSharedPtr< FImageCatalogItemData >& Item |
Add an item to the default group. | SImageCatalog.h | |
bool AddItem
(
const TSharedPtr< FImageCatalogItemData >& Item, |
Add an item to the default group right before an existing item. | SImageCatalog.h | |
bool AddItem
(
const TSharedPtr< FImageCatalogItemData >& Item, |
Add an item to an existing group. | SImageCatalog.h | |
bool AddItem
(
const TSharedPtr< FImageCatalogItemData >& Item, |
Add an item to an existing group right before an existing item. | SImageCatalog.h |
AddItem(const TSharedPtr< FImageCatalogItemData > &)
Description
Add an item to the default group.
| Name | AddItem |
| Type | function |
| Header File | /Engine/Plugins/Experimental/ImageWidgets/Source/ImageWidgets/Public/SImageCatalog.h |
| Include Path | #include "SImageCatalog.h" |
bool AddItem
(
const TSharedPtr < FImageCatalogItemData > & Item
)
True if the item was added successfully.
Parameters
| Name | Remarks |
|---|---|
| Item | Data for the item that is being added. |
AddItem(const TSharedPtr< FImageCatalogItemData > &, const FGuid &)
Description
Add an item to the default group right before an existing item. If the unique identifier for the other item is invalid or not in the default group, the item will be added at the end of the default group instead.
| Name | AddItem |
| Type | function |
| Header File | /Engine/Plugins/Experimental/ImageWidgets/Source/ImageWidgets/Public/SImageCatalog.h |
| Include Path | #include "SImageCatalog.h" |
bool AddItem
(
const TSharedPtr < FImageCatalogItemData > & Item,
const FGuid & BeforeItemWithThisGuid
)
True if the item was added successfully.
Parameters
| Name | Remarks |
|---|---|
| Item | Data for the item that is being added. |
| BeforeItemWithThisGuid | Unique identifier of the other item before which the new item should be added. |
AddItem(const TSharedPtr< FImageCatalogItemData > &, FName)
Description
Add an item to an existing group.
| Name | AddItem |
| 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 AddItem
(
const TSharedPtr < FImageCatalogItemData > & Item,
FName Group
)
False if a group with the given name does not exist, otherwise true.
Parameters
| Name | Remarks |
|---|---|
| Item | Data for the item that should be added. |
| Group | Name of the existing group to which the item should be added. |
AddItem(const TSharedPtr< FImageCatalogItemData > &, FName, const FGuid &)
Description
Add an item to an existing group right before an existing item. If the unique identifier for the other item is invalid or not in the given group, the item will be added at the end of the group instead.
| Name | AddItem |
| 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 AddItem
(
const TSharedPtr < FImageCatalogItemData > & Item,
FName Group,
const FGuid & BeforeItemWithThisGuid
)
False if a group with the given name does not exist, otherwise true.
Parameters
| Name | Remarks |
|---|---|
| Item | Data for the item that should be added. |
| Group | Name of the existing group to which the item should be added. |
| BeforeItemWithThisGuid | Unique identifier of the other item before which the new item should be added. |