Navigation
API > API/Plugins > API/Plugins/ModelViewViewModel
| Name | EMVVMExecutionMode |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/ModelViewViewModel/Source/ModelViewViewModel/Public/Types/MVVMExecutionMode.h |
| Include Path | #include "Types/MVVMExecutionMode.h" |
Syntax
enum EMVVMExecutionMode
{
Immediate = 0,
Delayed = 1,
Tick = 2,
DelayedWhenSharedElseImmediate = 3 UMETA(DisplayName="Auto"),
}
Values
| Name | Remarks |
|---|---|
| Immediate | Execute the binding as soon as the source value changes. |
| Delayed | Execute the binding at the end of the frame before drawing when the source value changes. |
| Tick | Always execute the binding at the end of the frame. |
| DelayedWhenSharedElseImmediate | When the binding can be triggered from multiple fields, use Delayed. Else, uses Immediate. |