InputLanguage.DefaultInputLanguage 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 the default input language for the system.
public:
 static property System::Windows::Forms::InputLanguage ^ DefaultInputLanguage { System::Windows::Forms::InputLanguage ^ get(); };public static System.Windows.Forms.InputLanguage DefaultInputLanguage { get; }static member DefaultInputLanguage : System.Windows.Forms.InputLanguagePublic Shared ReadOnly Property DefaultInputLanguage As InputLanguageProperty Value
An InputLanguage representing the default input language for the system.
Examples
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 );
   }
public void MyDefaultInputLanguage() {
   // Gets the default input language  and prints it in a text box.
   InputLanguage myDefaultLanguage = InputLanguage.DefaultInputLanguage;
   textBox1.Text = "Default input language is: " + myDefaultLanguage.Culture.EnglishName;
}
Public Sub MyDefaultInputLanguage()
   ' Gets the default input language  and prints it in a text box.
   Dim myDefaultLanguage As InputLanguage = InputLanguage.DefaultInputLanguage
   textBox1.Text = "Default input language is: " & _
       myDefaultLanguage.Culture.EnglishName
End Sub