Navigation
API > API/Runtime > API/Runtime/UMG
Whether a widget should be included in accessibility, and if so, how its text should be retrieved.
| Name | ESlateAccessibleBehavior |
| Type | enum |
| Header File | /Engine/Source/Runtime/UMG/Public/Components/SlateWrapperTypes.h |
| Include Path | #include "Components/SlateWrapperTypes.h" |
Syntax
enum ESlateAccessibleBehavior
{
NotAccessible,
Auto,
Summary,
Custom,
ToolTip,
}
Values
| Name | Remarks |
|---|---|
| NotAccessible | Not accessible. |
| Auto | Accessible, first checking to see if there's any custom default text assigned for widgets of this type. |
| Summary | Accessible, and traverse all child widgets and concat their AccessibleSummaryText together. |
| Custom | Accessible, and retrieve manually-assigned text from a TAttribute. |
| ToolTip | Accessible, and use the tooltip's accessible text. |