Navigation
API > API/Runtime > API/Runtime/Slate
When the table row should signal the owner widget that the selection changed. This only affect the selection with the left mouse button!
| Name | ETableRowSignalSelectionMode |
| Type | enum |
| Header File | /Engine/Source/Runtime/Slate/Public/Widgets/Views/STableRow.h |
| Include Path | #include "Widgets/Views/STableRow.h" |
Syntax
enum ETableRowSignalSelectionMode
{
Deferred,
Instantaneous,
}
Values
| Name | Remarks |
|---|---|
| Deferred | The selection will be updated on the left mouse button down, but the owner table will only get signaled when the mouse button is released or if a drag is detected. |
| Instantaneous | Each time the selection of the owner table is changed the table get signaled. |