Navigation
API > API/Runtime > API/Runtime/ApplicationCore
Whether a widget should be included in accessibility, and if so, how its text should be retrieved.
| Name | EAccessibleBehavior |
| Type | enum |
| Header File | /Engine/Source/Runtime/ApplicationCore/Public/GenericPlatform/Accessibility/GenericAccessibleInterfaces.h |
| Include Path | #include "GenericPlatform/Accessibility/GenericAccessibleInterfaces.h" |
Syntax
enum EAccessibleBehavior
{
NotAccessible,
Auto,
Summary,
Custom,
ToolTip,
}
Values
| Name | Remarks |
|---|---|
| NotAccessible | Not accessible. |
| Auto | Accessible, for the implementing library to decide what it means. |
| Summary | Accessible, and traverse all child widgets and concat their summary text together. |
| Custom | Accessible, and retrieve manually-assigned text from a TAttribute. |
| ToolTip | Accessible, and use the tooltip's accessible text. |