ListControl.OnTextChanged(EventArgs) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Raises the TextChanged event.
protected:
virtual void OnTextChanged(EventArgs ^ e);
protected virtual void OnTextChanged (EventArgs e);
abstract member OnTextChanged : EventArgs -> unit
override this.OnTextChanged : EventArgs -> unit
Protected Overridable Sub OnTextChanged (e As EventArgs)
Parameters
Remarks
The OnTextChanged method is called by the control that is derived from the ListControl class to raise the TextChanged event. Generally, the OnTextChanged method is used by control developers when extending the ListControl class.
The OnTextChanged method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
Notes to Inheritors
When overriding the OnTextChanged(EventArgs) method in a derived class, be sure to call the OnTextChanged(EventArgs) method for the base class so that registered delegates receive the event.