Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Application.CurrentInputLanguage Property

Definition

Namespace:
System.Windows.Forms
Assembly:
System.Windows.Forms.dll
Source:
Application.cs
Source:
Application.cs
Source:
Application.cs
Source:
Application.cs
Source:
Application.cs

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


Feedback

Was this page helpful?