SpellCheck.GetIsEnabled(TextBoxBase) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个值,该值指示是否对指定的文本编辑控件启用拼写检查器。
public:
static bool GetIsEnabled(System::Windows::Controls::Primitives::TextBoxBase ^ textBoxBase);
public static bool GetIsEnabled (System.Windows.Controls.Primitives.TextBoxBase textBoxBase);
static member GetIsEnabled : System.Windows.Controls.Primitives.TextBoxBase -> bool
Public Shared Function GetIsEnabled (textBoxBase As TextBoxBase) As Boolean
参数
- textBoxBase
- TextBoxBase
要检查的文本编辑控件。 示例控件包括 TextBox 和 RichTextBox。
返回
如果对该文本编辑控件启用拼写检查器,则为 true
;否则为 false
。
例外
textBoxBase
为 null
。