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

Adds an event handler for the InputLangChangeRequest event. 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]
Public Sub AddOnInputLangChangeRequest( _
   ByVal handler As InputLangChangeRequestEventHandler _
)
[C#]
public void AddOnInputLangChangeRequest(
   InputLangChangeRequestEventHandler handler
);
[C++]
public: void AddOnInputLangChangeRequest(
   InputLangChangeRequestEventHandler* handler
);
[JScript]
public function AddOnInputLangChangeRequest(
   handler : InputLangChangeRequestEventHandler
);

Parameters

handler
Delegate to call when the event is fired.

See Also

Form Class | Form Members | System.WinForms Namespace | InputLangChangeRequestEventHandler | RemoveOnInputLangChangeRequest