NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Form InputLangChange Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the InputLangChange event.

[Visual Basic]
Private Sub FormName_InputLangChange( _
   ByVal sender As Object, _
   ByVal e As InputLangChangeEventArgs _
)
[C#]
private void FormName_InputLangChange(
   object sender,
   InputLangChangeEventArgs e
);
[C++]
private: void FormName_InputLangChange(
   Object* sender,
   InputLangChangeEventArgs* e
);
[JScript]
private FormName_InputLangChange(
   sender : Object,
   e : InputLangChangeEventArgs
);

Parameters

sender
The source of the event.
e
An InputLangChangeEventArgs that contains the event data. The following InputLangChangeEventArgs properties provide information specific to this event.
Property Description
CharSet
Gets the character set associated with the new input language.
Culture
Gets the <span id="frameworks:locale" class ="gp">locale</span> of the input language.
InputLanguage
Gets the input language.

See Also

Form Class | Form MembersTopic | System.WinForms Namespace