ImeSentenceModeValues 列挙型

定義

入力方法で実行される文変換のモードを指定します。

この列挙体は、メンバー値のビットごとの組み合わせをサポートしています。

public enum class ImeSentenceModeValues
[System.Flags]
public enum ImeSentenceModeValues
[<System.Flags>]
type ImeSentenceModeValues = 
Public Enum ImeSentenceModeValues
継承
ImeSentenceModeValues
属性

フィールド

Automatic 4

入力方法は、文変換方式を自動的に使用します。

Conversation 16

入力方法は、会話スタイル文変換を使用します。

DoNotCare -2147483648

入力方法は、どの文変換方式が使用されているかを気にしません。実際の文変換モードは不定です。

None 0

入力方法は、どの文変換も実行しません。

PhrasePrediction 8

入力方法は、句予測文変換を使用します。

PluralClause 1

入力方法は、複数句文変換を使用します。

SingleConversion 2

入力方法は、単一漢字/ハングル文変換を使用します。

次の例では、 プロパティを使用する方法を ImeSentenceMode 示します。

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();
InputMethod.SetPreferredImeState(myTextBox, InputMethodState.On)
InputMethod.Current.ImeSentenceMode = ImeSentenceModeValues.Automatic
InputMethod.Current.HandwritingState = InputMethodState.On
InputMethod.Current.SpeechMode = SpeechMode.Dictation
Dim myInputScope As New InputScope()
myInputScope.RegularExpression = "W|P|F"
InputMethod.SetInputScope(myTextBox, myInputScope)
tb6.Text = "Configuration UI Available?: " & InputMethod.Current.CanShowConfigurationUI.ToString()

適用対象

こちらもご覧ください