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!

TextBoxBase.AddOnTextChanged

Adds an event handler for the System.WinForms.TextBoxBase.TextChanged event.

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

Parameters

handler
An EventHandler delegate that represents the method that will handle the System.WinForms.TextBoxBase.TextChanged event.

Remarks

Duplicate calls to the AddOnTextChanged method are not filtered out.

See Also

TextBoxBase Class | TextBoxBase Members | System.WinForms Namespace