本文主要是介绍从UE4引擎开始学英语(2)---Accessibility,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
(0)Accessibility 可访问性
(1)Override Accessible Defaults 重载可访问默认值
Override of the default accessibility behavior and text for this widget.
重载此控件的所有默认访问行为和文本。
(2)Can Children to Accessible 可访问子项
Whether or not children of this widget can appear as distinct accessible widgets.
此控件的子项是否能显示为不同的可访问控件
(3)Accessible Behavior 可访问行为
Whether or the widget is accessible,and how to describe it.if set to custom, additional customization options will appear.
是否可访问控件,及其描述方式。若设为自定义,额外自定义选项将出现。
<1>Not Accessible 不可访问
<2>Auto 自动
Accessible ,first checking to see if there's any custom default text assigned for widgets of this type. if not , then it will attempt to use the alternate behavior(ie AccessibleSummaryBehavior instead of AccessibleBehavior) and return that value instead.This acts as a reference so that you only need set one value for bote of them to return the same thing.
可访问,首先检查确定是否有自定义默认文本指定到此类型的控件。如无,则将其尝试使用替代行为(如用AccessibleSummaryBehavior 替代AccessibleBehavior)并返回该值。这用作一个引用,因此用户只需要为二者设置一个值,便能返回相同内容
<3>Summary 概述
Accessible, and traverse all child widgets and concat their AccessibleSummaryText together.
可访问,遍历所有子控件并将其AccessibleSummaryText合并在一起
<4>Custom 自定义
Accessible,and retrieve manually-assigned text from a TAttribute.
可访问,并从一个TAttribute获取手动指定的文本
<5>Tool Tip 工具提示
Accessible, and use the tooltip's accessible text.
可访问,并使用工具提示的可访问文本。
(4)Accessible Summary Behavior 可访问概览行为
How to describe this widget when it's being presented through a summary of a parent widget. If set to custom, additional customization options will appear.
通过父控件概览显示控件时,此控件的描述方式。若设为自定义,额外自定义选项将出现。
这篇关于从UE4引擎开始学英语(2)---Accessibility的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!