Navigation
API > API/Editor > API/Editor/SequencerCore
| |
|
| Name |
UE::Sequencer::EOutlinerSelectionState |
| Type |
enum |
| Header File |
/Engine/Source/Editor/SequencerCore/Public/MVVM/Extensions/IOutlinerExtension.h |
| Include Path |
#include "MVVM/Extensions/IOutlinerExtension.h" |
Syntax
namespace UE
{
namespace Sequencer
{
enum EOutlinerSelectionState
{
None = 0,
SelectedDirectly = 1 << 0,
HasSelectedKeys = 1 << 1,
HasSelectedTrackAreaItems = 1 << 2,
DescendentHasSelectedKeys = 1 << 3,
DescendentHasSelectedTrackAreaItems = 1 << 4,
}
}
}
Values
| Name |
Remarks |
| None |
|
| SelectedDirectly |
|
| HasSelectedKeys |
|
| HasSelectedTrackAreaItems |
|
| DescendentHasSelectedKeys |
|
| DescendentHasSelectedTrackAreaItems |
|