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!

ComboBox.OnTextChanged

Fires the event indicating that the text property has been changed. Inheriting controls should use this in favour of actually listening to the event, but should not forget to call base.onTextChanged() to ensure that the event is still fired for external listeners.

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

Parameters

e
Event to send

See Also

ComboBox Class | ComboBox Members | System.WinForms Namespace