Expand Minimize
This topic has not yet been rated - Rate this topic

ImeSentenceModeValues Enumeration

Specifies the mode of sentence conversion performed by an input method.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Namespace:  System.Windows.Input
Assembly:  PresentationCore (in PresentationCore.dll)
[FlagsAttribute]
public enum ImeSentenceModeValues
<object property="enumerationMemberName" .../>
Member nameDescription
NoneThe input method does not perform any sentence conversion.
PluralClauseThe input method uses plural clause sentence conversion.
SingleConversionThe input method uses single Kanji/Hanja sentence conversion.
AutomaticThe input method uses the sentence conversion method automatically.
PhrasePredictionThe input method uses phrase prediction sentence conversion.
ConversationThe input method uses conversation-style sentence conversion.
DoNotCareThe input method does not care what sentence conversion method is used; the actual sentence conversion mode is indeterminate.

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();

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.