How can I programmatically exit edit mode for an UltraTextEditor?
Regards,
Albert
Albert,
You should just be able to call ExitEditMode on the editor itself, i.e.:
this.ultraTextEditor1.Editor.ExitEditMode(false, true);
-Matt
Thanks, Matt.