ImeSentenceModeValues Enumeration
.NET Framework 3.0
Specifies the mode of sentence conversion performed by an input method.
Assembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.Windows.InputAssembly: PresentationCore (in presentationcore.dll)
XML Namespace: http://schemas.microsoft.com/winfx/2006/xaml/presentation
| Member name | Description | |
|---|---|---|
| Automatic | The input method uses the sentence conversion method automatically. | |
| Conversation | The input method uses conversation-style sentence conversion. | |
| DoNotCare | The input method does not care what sentence conversion method is used; the actual sentence conversion mode is indeterminate. | |
| None | The input method does not perform any sentence conversion. | |
| PhrasePrediction | The input method uses phrase prediction sentence conversion. | |
| PluralClause | The input method uses plural clause sentence conversion. | |
| SingleConversion | The input method uses single Kanji/Hanja sentence conversion. |
The following example demonstrates how to use the ImeSentenceMode property.
InputMethod.SetPreferredImeState(myTextBox, InputMethodState.On); InputMethod.Current.ImeSentenceMode = ImeSentenceModeValues.Automatic; InputMethod.Current.HandwritingState = InputMethodState.On; InputMethod.Current.SpeechMode = SpeechMode.Dictation; InputScope myInputScope = new InputScope(); myInputScope.RegularExpression = "W|P|F"; InputMethod.SetInputScope(myTextBox, myInputScope); tb6.Text = "Configuration UI Available?: " + InputMethod.Current.CanShowConfigurationUI.ToString();
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: