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

Adds an event handler for the InputLangChange event. The InputLangChange event is fired after the input language has changed for this form.

[Visual Basic]
Public Sub AddOnInputLangChange( _
   ByVal handler As InputLangChangeEventHandler _
)
[C#]
public void AddOnInputLangChange(
   InputLangChangeEventHandler handler
);
[C++]
public: void AddOnInputLangChange(
   InputLangChangeEventHandler* handler
);
[JScript]
public function AddOnInputLangChange(
   handler : InputLangChangeEventHandler
);

Parameters

handler
Delegate to call when the event is fired.

See Also

Form Class | Form Members | System.WinForms Namespace | InputLangChangeEventHandler | RemoveOnInputLangChange