Navigation
API > API/Runtime > API/Runtime/ApplicationCore > API/Runtime/ApplicationCore/GenericPlatform > API/Runtime/ApplicationCore/GenericPlatform/Accessibility
References
| Module | ApplicationCore |
| Header | /Engine/Source/Runtime/ApplicationCore/Public/GenericPlatform/Accessibility/GenericAccessibleInterfaces.h |
| Include | #include "GenericPlatform/Accessibility/GenericAccessibleInterfaces.h" |
Syntax
struct FAccessibleEventArgs
Remarks
The arguments for an accessible event that is raised by accessible widgets to be passed to an accessibility event handler such as a native OS. It is up to the client to create an instance of this struct and fill in the appropriate data members.
Variables
| Type | Name | Description | |
|---|---|---|---|
| EAccessibleEvent | Event | The type of event generated | |
| FVariant | NewValue | If this was a property changed event, the 'after' value. | |
| FVariant | OldValue | If this was a property changed event, the 'before' value | |
| FAccessibleUserIndex | UserIndex | The Id of the user this event is intended for. | |
| TSharedRef< IAccessibleWidget > | Widget | The accessible widget that generated the event |
Constructors
| Type | Name | Description | |
|---|---|---|---|
FAccessibleEventArgs
(
TSharedRef< IAccessibleWidget > InWidget, |