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.OnInputLangChangeRequest

The InputLangChangeRequest event is fired when the user attempts to change the input language for this form. If the event is cancel then the input language will not change.

[Visual Basic]
Overridable Protected Sub OnInputLangChangeRequest( _
   ByVal e As InputLangChangeRequestEventArgs _
)
[C#]
protected virtual void OnInputLangChangeRequest(
   InputLangChangeRequestEventArgs e
);
[C++]
protected: virtual void OnInputLangChangeRequest(
   InputLangChangeRequestEventArgs* e
);
[JScript]
protected function OnInputLangChangeRequest(
   e : InputLangChangeRequestEventArgs
);

Parameters

e
[To be supplied.]

See Also

Form Class | Form Members | System.WinForms Namespace | AddOnInputLangChangeRequest | RemoveOnInputLangChangeRequest | InputLangChangeRequestEventArgs