ESlateAccessibleBehavior

Whether a widget should be included in accessibility, and if so, how its text should be retrieved.

Windows
MacOS
Linux

References

Module

UMG

Header

/Engine/Source/Runtime/UMG/Public/Components/SlateWrapperTypes.h

Include

#include "Components/SlateWrapperTypes.h"

Syntax

enum ESlateAccessibleBehavior
{
    NotAccessible,
    Auto,
    Summary,
    Custom,
    ToolTip,
}

Values

Name

Description

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.

Remarks

Whether a widget should be included in accessibility, and if so, how its text should be retrieved.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss