InputLanguageChangingEventArgs Constructors

Definition

Initializes a new instance of the InputLanguageChangingEventArgs class.

Overloads

InputLanguageChangingEventArgs(CultureInfo, Boolean)

Initializes a new instance of the InputLanguageChangingEventArgs class with the specified locale, character set, and acceptance.

InputLanguageChangingEventArgs(InputLanguage, Boolean)

Initializes a new instance of the InputLanguageChangingEventArgs class with the specified input language, character set, and acceptance of a language change.

InputLanguageChangingEventArgs(CultureInfo, Boolean)

Initializes a new instance of the InputLanguageChangingEventArgs class with the specified locale, character set, and acceptance.

public:
 InputLanguageChangingEventArgs(System::Globalization::CultureInfo ^ culture, bool sysCharSet);
public InputLanguageChangingEventArgs (System.Globalization.CultureInfo culture, bool sysCharSet);
new System.Windows.Forms.InputLanguageChangingEventArgs : System.Globalization.CultureInfo * bool -> System.Windows.Forms.InputLanguageChangingEventArgs
Public Sub New (culture As CultureInfo, sysCharSet As Boolean)

Parameters

culture
CultureInfo

The locale of the requested input language.

sysCharSet
Boolean

true if the system default font supports the character set required for the requested input language; otherwise, false.

Applies to

InputLanguageChangingEventArgs(InputLanguage, Boolean)

Initializes a new instance of the InputLanguageChangingEventArgs class with the specified input language, character set, and acceptance of a language change.

public:
 InputLanguageChangingEventArgs(System::Windows::Forms::InputLanguage ^ inputLanguage, bool sysCharSet);
public InputLanguageChangingEventArgs (System.Windows.Forms.InputLanguage inputLanguage, bool sysCharSet);
new System.Windows.Forms.InputLanguageChangingEventArgs : System.Windows.Forms.InputLanguage * bool -> System.Windows.Forms.InputLanguageChangingEventArgs
Public Sub New (inputLanguage As InputLanguage, sysCharSet As Boolean)

Parameters

inputLanguage
InputLanguage

The requested input language.

sysCharSet
Boolean

true if the system default font supports the character set required for the requested input language; otherwise, false.

Exceptions

inputLanguage is null.

Applies to