Navigation
API > API/Plugins > API/Plugins/ConcertSharedSlate
These functions build widgets for selecting options. TSourceSelectionCategory is an entry in a combo button menu; it can contain subcategories. Categories contain IItemSourceModels which are a source of options.
| Name | UE::ConcertSharedSlate::EObjectItemValidity |
| Type | enum |
| Header File | /Engine/Plugins/Developer/Concert/ConcertUI/ConcertSharedSlate/Source/ConcertSharedSlate/Public/Replication/Editor/Model/ObjectSource/IObjectSelectionSourceModel.h |
| Include Path | #include "Replication/Editor/Model/ObjectSource/IObjectSelectionSourceModel.h" |
Syntax
namespace UE
{
namespace ConcertSharedSlate
{
enum EObjectItemValidity
{
Valid,
DoesNotExist,
Invalid,
}
}
}
Values
| Name | Remarks |
|---|---|
| Valid | The item is allowed |
| DoesNotExist | The referenced object no longer exists. E.g. the actor was removed. |
| Invalid | Any other reason, e.g. the object was allowed in a previous version but no longer is allowed now. |