Navigation
API > API/Runtime > API/Runtime/Slate > API/Runtime/Slate/SListView
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void SetItemSelection
(
const ItemType& InItem, |
Set the selection state of an item. | Widgets/Views/SListView.h | |
void SetItemSelection
(
TConstArrayView< ItemType > InItems, |
Set the selection state of multiple items. | Widgets/Views/SListView.h |
SetItemSelection(const ItemType &, bool, ESelectInfo::Type)
Description
Set the selection state of an item.
| Name | SetItemSelection |
| Type | function |
| Header File | /Engine/Source/Runtime/Slate/Public/Widgets/Views/SListView.h |
| Include Path | #include "Widgets/Views/SListView.h" |
void SetItemSelection
(
const ItemType & InItem,
bool bSelected,
ESelectInfo::Type SelectInfo
)
Parameters
| Name | Remarks |
|---|---|
| InItem | The Item whose selection state to modify |
| bSelected | true to select the item; false to unselect |
| SelectInfo | Provides context on how the selection changed |
SetItemSelection(TConstArrayView< ItemType >, bool, ESelectInfo::Type)
Description
Set the selection state of multiple items.
| Name | SetItemSelection |
| Type | function |
| Header File | /Engine/Source/Runtime/Slate/Public/Widgets/Views/SListView.h |
| Include Path | #include "Widgets/Views/SListView.h" |
void SetItemSelection
(
TConstArrayView< ItemType > InItems,
bool bSelected,
ESelectInfo::Type SelectInfo
)
Parameters
| Name | Remarks |
|---|---|
| InItems | The Items whose selection state to modify |
| bSelected | true to select the items; false to unselect |
| SelectInfo | Provides context on how the selection changed |