SpellCheck.SetIsEnabled(TextBoxBase, Boolean) Method
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.
Enables or disables the spelling checker on the specified text-editing control, such as TextBox or RichTextBox.
public:
static void SetIsEnabled(System::Windows::Controls::Primitives::TextBoxBase ^ textBoxBase, bool value);
public static void SetIsEnabled (System.Windows.Controls.Primitives.TextBoxBase textBoxBase, bool value);
static member SetIsEnabled : System.Windows.Controls.Primitives.TextBoxBase * bool -> unit
Public Shared Sub SetIsEnabled (textBoxBase As TextBoxBase, value As Boolean)
Parameters
- textBoxBase
- TextBoxBase
The text-editing control on which to enable or disable the spelling checker. Example controls include TextBox and RichTextBox.
- value
- Boolean
A Boolean value that specifies whether the spelling checker is enabled on the text-editing control.
Remarks
This method enables an attached property usage for the IsEnabled property in XAML. The following example shows the XAML usage.