Navigation
API > API/Runtime > API/Runtime/ApplicationCore
Events that can be raised from accessible widgets to report back to the platform
| Name | EAccessibleEvent |
| Type | enum |
| Header File | /Engine/Source/Runtime/ApplicationCore/Public/GenericPlatform/Accessibility/GenericAccessibleInterfaces.h |
| Include Path | #include "GenericPlatform/Accessibility/GenericAccessibleInterfaces.h" |
Syntax
enum EAccessibleEvent
{
FocusChange,
Activate,
Notification,
ParentChanged,
WidgetRemoved,
}
Values
| Name | Remarks |
|---|---|
| FocusChange | A widget has become focused or unfocused. |
| Activate | A widget has been clicked, checked, or otherwise activated. OldValue - N/A NewValue - N/A |
| Notification | Warning: Partial implementation Notify the user that something has happened. |
| ParentChanged | A widget's parent is about to be changed. |
| WidgetRemoved | The widget was removed from the UI tree or deleted. OldValue - N/A NewValue - N/A |