ImeSentenceModeValues Sabit listesi
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Giriş yöntemi tarafından gerçekleştirilen cümle dönüştürme modunu belirtir.
Bu sabit listesi, üyeleri için bit düzeyinde karşılaştırmayı destekler.
public enum class ImeSentenceModeValues
[System.Flags]
public enum ImeSentenceModeValues
[<System.Flags>]
type ImeSentenceModeValues =
Public Enum ImeSentenceModeValues
- Devralma
- Öznitelikler
Alanlar
Automatic | 4 | Giriş yöntemi, cümle dönüştürme yöntemini otomatik olarak kullanır. |
Conversation | 16 | Giriş yöntemi konuşma stili cümle dönüştürmeyi kullanır. |
DoNotCare | -2147483648 | Giriş yöntemi hangi cümle dönüştürme yönteminin kullanıldığıyla ilgilenmez; gerçek cümle dönüştürme modu belirsizdir. |
None | 0 | Giriş yöntemi herhangi bir cümle dönüştürmesi gerçekleştirmez. |
PhrasePrediction | 8 | Giriş yöntemi, tümcecik tahmin cümlesi dönüştürmesini kullanır. |
PluralClause | 1 | Giriş yöntemi çoğul yan tümcesi cümle dönüştürmesini kullanır. |
SingleConversion | 2 | Giriş yöntemi tek Kanji/Hanja cümle dönüştürmesini kullanır. |
Örnekler
Aşağıdaki örnekte özelliğinin nasıl kullanılacağı gösterilmektedir 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()