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

适用于

另请参阅