Navigation
API > API/Runtime > API/Runtime/UMG > API/Runtime/UMG/FieldNotification
References
| Module | UMG |
| Header | /Engine/Source/Runtime/UMG/Public/FieldNotification/WidgetEventField.h |
| Include | #include "FieldNotification/WidgetEventField.h" |
Syntax
struct FWidgetEventField
Remarks
Generic structure to notify when an event occurs.
class UMyWidget : public UWidget {
FWidgetEventField SomeEvent;
void OnSomeEvent() { BroadcastFieldValueChanged(FFieldNotificationClassDescriptor::Text); } }; };