RichEditBox.IsTextPredictionEnabled 属性

定义

获取或设置一个值,该值指示是否为此 RichEditBox 启用文本预测功能 (“自动完成”) 。

public:
 property bool IsTextPredictionEnabled { bool get(); void set(bool value); };
bool IsTextPredictionEnabled();

void IsTextPredictionEnabled(bool value);
public bool IsTextPredictionEnabled { get; set; }
var boolean = richEditBox.isTextPredictionEnabled;
richEditBox.isTextPredictionEnabled = boolean;
Public Property IsTextPredictionEnabled As Boolean
<RichEditBox IsTextPredictionEnabled="bool" />

属性值

Boolean

bool

如果为 True ,则启用文本预测功能;否则为 false。 默认值为 true

注解

此属性不会影响日语或中文的输入法编辑器 (输入法) 。 即使此属性为 false,也会显示这些语言的文本预测。

适用于