InputMethod.CanShowConfigurationUI Property

Definition

Gets a value that indicates whether or not this input method can display configuration user interface (UI).

public:
 property bool CanShowConfigurationUI { bool get(); };
public bool CanShowConfigurationUI { get; }
member this.CanShowConfigurationUI : bool
Public ReadOnly Property CanShowConfigurationUI As Boolean

Property Value

true if configuration UI can be displayed; otherwise, false.

This property has no default value.

Examples

The following example demonstrates how to use the CanShowConfigurationUI property to determine if the configuration UI is viewable.

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

Applies to

See also