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!

RichTextBox.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]
Overrides Protected Sub OnTextChanged( _
   ByVal e As EventArgs _
)
[C#]
protected override void OnTextChanged(
   EventArgs e
);
[C++]
protected: override void OnTextChanged(
   EventArgs* e
);
[JScript]
protected override function OnTextChanged(
   e : EventArgs
);

Parameters

e
Event to send

See Also

RichTextBox Class | RichTextBox Members | System.WinForms Namespace