Navigation
API > API/Plugins > API/Plugins/ImageWidgets > API/Plugins/ImageWidgets/SImageCatalog
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TSharedPtr< const FImageCatalogItemData > GetItemAt
(
int32 Index |
Retrieve the existing item for a given index within the default group. | SImageCatalog.h | |
TSharedPtr< const FImageCatalogItemData > GetItemAt
(
int32 Index, |
Retrieve the existing item within a given group for a given index. | SImageCatalog.h |
GetItemAt(int32)
Description
Retrieve the existing item for a given index within the default group.
| Name | GetItemAt |
| 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 |
TSharedPtr < const FImageCatalogItemData > GetItemAt
(
int32 Index
) const
The pointer to the item or an invalid pointer if the index is invalid.
Parameters
| Name | Remarks |
|---|---|
| Index | Index of the item in the default group; should be at least 0 and less than |
See Also
-
NumItems(
-
GetDefaultGroup()).
GetItemAt(int32, FName)
Description
Retrieve the existing item within a given group for a given index.
| Name | GetItemAt |
| 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 |
TSharedPtr < const FImageCatalogItemData > GetItemAt
(
int32 Index,
FName Group
) const
The pointer to the item or an invalid pointer if the group does not exist or the index is invalid.
Parameters
| Name | Remarks |
|---|---|
| Index | Index of the item in the given group; should be at least 0 and less than |
| Group | Name of an existing group. |
See Also
- NumItems(Group).