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 InputLangChangeRequest Event

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
An InputLangChangeRequestEventArgs that contains the event data. The following InputLangChangeRequestEventArgs properties provide information specific to this event.
Property Description
AcceptRequest
Gets or sets a value indicating whether the request is accepted and the input language will change.
Culture
Gets the <span id="frameworks:locale" class ="gp">locale</span> of the requested input language.
InputLanguage
Gets the requested input language.
SysCharSet
Gets a value indicating whether the system default font supports the character set required for the requested input language.

See Also

Form Class | Form MembersTopic | System.WinForms Namespace