Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

TextBox.IsSpellCheckEnabled 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 specifies whether the TextBox input interacts with a spell check engine.

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

void IsSpellCheckEnabled(bool value);
public bool IsSpellCheckEnabled { get; set; }
var boolean = textBox.isSpellCheckEnabled;
textBox.isSpellCheckEnabled = boolean;
Public Property IsSpellCheckEnabled As Boolean
<TextBox IsSpellCheckEnabled="bool" />

Property Value

Boolean

bool

true if the TextBox input interacts with a spell check engine; otherwise, false. The default is true.

Remarks

When using the Soft Input Panel (SIP), this property enables the following features:

  • auto-cap (Mobile only)
  • spell check
  • auto-correction
  • spelling candidates on-demand when the user taps on a misspelled word

Windows 8 For Universal Windows 8 app, the default is false.

Applies to

See also


Feedback

Was this page helpful?