InputLanguage::DefaultInputLanguage Property

 

Gets the default input language for the system.

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

public:
property InputLanguage^ DefaultInputLanguage {
	static InputLanguage^ get();
}

Property Value

Type: System.Windows.Forms::InputLanguage^

An InputLanguage representing the default input language for the system.

The following code example gets the default input language and prints its name in a text box. This code assumes that textBox1 has been instantiated.

public:
   void MyDefaultInputLanguage()
   {
      // Gets the default input language  and prints it in a text box.
      InputLanguage^ myDefaultLanguage = InputLanguage::DefaultInputLanguage;
      textBox1->Text = String::Format( "Default input language is: {0}",
         myDefaultLanguage->Culture->EnglishName );
   }

.NET Framework
Available since 1.1
Return to top
Show: