Navigation
API > API/Plugins > API/Plugins/ImageWidgets > API/Plugins/ImageWidgets/SImageCatalog
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TOptional< FGuid > GetItemGuidAt
(
int32 Index |
Retrieve the unique identifier of an existing item at the given index within the default group. | SImageCatalog.h | |
TOptional< FGuid > GetItemGuidAt
(
int32 Index, |
Retrieve the unique identifier of an existing item at the given index within the given group. | SImageCatalog.h |
GetItemGuidAt(int32)
Description
Retrieve the unique identifier of an existing item at the given index within the default group.
| Name | GetItemGuidAt |
| 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 < FGuid > GetItemGuidAt
(
int32 Index
) const
Unique identifier of the item or no value 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()).
GetItemGuidAt(int32, FName)
Description
Retrieve the unique identifier of an existing item at the given index within the given group.
| Name | GetItemGuidAt |
| 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 < FGuid > GetItemGuidAt
(
int32 Index,
FName Group
) const
Unique identifier of the item or no value 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).