Application.CurrentInputLanguage Property
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.
Gets or sets the current input language for the current thread.
public:
static property System::Windows::Forms::InputLanguage ^ CurrentInputLanguage { System::Windows::Forms::InputLanguage ^ get(); void set(System::Windows::Forms::InputLanguage ^ value); };
public static System.Windows.Forms.InputLanguage CurrentInputLanguage { get; set; }
static member CurrentInputLanguage : System.Windows.Forms.InputLanguage with get, set
Public Shared Property CurrentInputLanguage As InputLanguage
Property Value
An InputLanguage representing the current input language for the current thread.
Examples
The following code example gets this property and displays its value in a text box. The example requires that textBox1
has been placed on a form.
private:
void PrintCurrentInputLanguage()
{
textBox1->Text = "The current input language is: {0}",
Application::CurrentInputLanguage->Culture->EnglishName;
}
private void PrintCurrentInputLanguage() {
textBox1.Text = "The current input language is: " +
Application.CurrentInputLanguage.Culture.EnglishName;
}
Private Sub PrintCurrentInputLanguage()
textBox1.Text = "The current input language is: " & _
Application.CurrentInputLanguage.Culture.EnglishName
End Sub
Applies to
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.