Modified
The textEditorControl.Document.DocumentChanged event indicates that the text has changed.
Zoom
To zoom increase or decrease the font size.
textEditorControl.Font = new Font(textEditorControl.Font.Name, textEditorControl.Font.Size + 1);
Select All
textEditorControl.ActiveTextAreaControl.TextArea.ClipboardHandler.SelectAll(null, null);