ImeSentenceModeValues Enumeration

Definition

Gibt den Modus der Satzkonvertierung an, die von einer Eingabemethode ausgeführt wird.

Diese Enumeration unterstützt eine bitweise Kombination ihrer Memberwerte.

public enum class ImeSentenceModeValues
[System.Flags]
public enum ImeSentenceModeValues
[<System.Flags>]
type ImeSentenceModeValues = 
Public Enum ImeSentenceModeValues
Vererbung
ImeSentenceModeValues
Attribute

Felder

Automatic 4

Die Eingabemethode verwendet die Satzkonvertierungsmethode automatisch.

Conversation 16

Die Eingabemethode verwendet die Satzkonvertierung mit Gesprächsstil.

DoNotCare -2147483648

Die Eingabemethode berücksichtigt die verwendete Satzkonvertierungsmethode nicht. Der tatsächliche Satzkonvertierungsmodus ist unbestimmt.

None 0

Die Eingabemethode führt keine Satzkonvertierung aus.

PhrasePrediction 8

Die Eingabemethode verwendet die Satzkonvertierung mit Ausdrucksvorhersage.

PluralClause 1

Die Eingabemethode verwendet die Satzkonvertierung für Plural.

SingleConversion 2

Die Eingabemethode verwendet die einzelne Kanji/Hanja-Satzkonvertierung.

Beispiele

Im folgenden Beispiel wird die Verwendung der ImeSentenceMode -Eigenschaft veranschaulicht.

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

Gilt für:

Weitere Informationen