.NET Framework Class Library
ContentElement.IsInputMethodEnabled Property
Gets a value that indicates whether an input method system, such as an Input Method Editor (IME), is enabled for processing the input to this element.
Assembly: PresentationCore (in PresentationCore.dll)
Syntax
Visual Basic
Public ReadOnly Property IsInputMethodEnabled As Boolean Get
C#
public bool IsInputMethodEnabled { get; }
Visual C++
public: property bool IsInputMethodEnabled { bool get (); }
F#
member IsInputMethodEnabled : bool
Property Value
Type: System.Booleantrue if an input method is active; otherwise, false. The default value of the underlying attached property is true; however, this value is influenced by the state of input methods at runtime.
Remarks
This property returns the value that is returned by the attached property InputMethod.IsInputMethodEnabled for the currently enabled input methods (keyboard, speech, and other input devices).
Version Information
.NET Framework
Supported in: 4, 3.5, 3.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also