Application::CurrentInputLanguage Property

 

Gets or sets the current input language for the current thread.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property InputLanguage^ CurrentInputLanguage {
	static InputLanguage^ get();
	static void set(InputLanguage^ value);
}

Property Value

Type: System.Windows.Forms::InputLanguage^

An InputLanguage representing the current input language for the current thread.

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;
   }

SecurityPermission

for the immediate caller to call unmanaged code. Associated enumeration: SecurityPermissionFlag::UnmanagedCode

.NET Framework
Available since 1.1
Return to top
Show: