InputMethod.ShowRegisterWordUI Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Displays word registration user interface (UI) associated with the currently active keyboard text service.
Overloads
ShowRegisterWordUI() |
Displays word registration user interface (UI) associated with the currently active keyboard text service. |
ShowRegisterWordUI(String) |
Displays word registration user interface (UI) associated with the currently active keyboard text service. Accepts a specified string as the default value to register. |
ShowRegisterWordUI(UIElement, String) |
Displays word registration user interface (UI) associated with the currently active keyboard text service. Accepts a specified string as the default value to register, and a specified UIElement as the parent element for the configuration UI. |
ShowRegisterWordUI()
Displays word registration user interface (UI) associated with the currently active keyboard text service.
public:
void ShowRegisterWordUI();
public void ShowRegisterWordUI ();
member this.ShowRegisterWordUI : unit -> unit
Public Sub ShowRegisterWordUI ()
See also
- CanShowRegisterWordUI
- ShowRegisterWordUI(String)
- ShowRegisterWordUI(UIElement, String)
- ShowConfigureUI
Applies to
ShowRegisterWordUI(String)
Displays word registration user interface (UI) associated with the currently active keyboard text service. Accepts a specified string as the default value to register.
public:
void ShowRegisterWordUI(System::String ^ registeredText);
public void ShowRegisterWordUI (string registeredText);
member this.ShowRegisterWordUI : string -> unit
Public Sub ShowRegisterWordUI (registeredText As String)
Parameters
- registeredText
- String
A string that specifies a value to register.
Remarks
Typically the value specified by registeredText is used to pre-populate the word registration user interface (UI).
See also
Applies to
ShowRegisterWordUI(UIElement, String)
Displays word registration user interface (UI) associated with the currently active keyboard text service. Accepts a specified string as the default value to register, and a specified UIElement as the parent element for the configuration UI.
public:
void ShowRegisterWordUI(System::Windows::UIElement ^ element, System::String ^ registeredText);
public void ShowRegisterWordUI (System.Windows.UIElement element, string registeredText);
member this.ShowRegisterWordUI : System.Windows.UIElement * string -> unit
Public Sub ShowRegisterWordUI (element As UIElement, registeredText As String)
Parameters
- element
- UIElement
A UIElement that will be used as the parent element for the word registration UI. This parameter can be null
.
- registeredText
- String
A string that specifies a value to register.
Remarks
Typically the value specified by registeredText is used to pre-populate the word registration user interface (UI).