RichEditBox.IsTextPredictionEnabled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether text prediction features ("autocomplete") are enabled for this 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" />
Property Value
bool
True to enable text prediction features; otherwise, false. The default is true.
Remarks
This property doesn't affect Input Method Editor (IME) for Japanese or Chinese languages. Text prediction for these languages is shown even if this property is false.