Navigation
API > API/Plugins > API/Plugins/AvalancheOutliner
Flags specifying how an Item should be Selected
| Name | EAvaOutlinerItemSelectionFlags |
| Type | enum |
| Header File | /Engine/Plugins/VirtualProduction/Avalanche/Source/AvalancheOutliner/Public/AvaOutlinerDefines.h |
| Include Path | #include "AvaOutlinerDefines.h" |
Syntax
enum EAvaOutlinerItemSelectionFlags
{
None = 0,
AppendToCurrentSelection = 1 << 0,
SignalSelectionChange = 1 << 1,
IncludeChildren = 1 << 2,
ScrollIntoView = 1 << 3,
}
Values
| Name | Remarks |
|---|---|
| None | |
| AppendToCurrentSelection | Append to the Current Selection |
| SignalSelectionChange | Signal Selection Change (e.g. to trigger on Selection Change Delegate) |
| IncludeChildren | Auto-include the Items' Children in the Selection |
| ScrollIntoView | Whether to Scroll first Item into View |