Hello,
I want to hide most of the buttons on the htmleditor control. I really want it to be a simple one bar menu, just common things like bold, fonts and colors, but I want to hide things like insert bookmark and insert flash that will confuse my users. Is this possible?
Thanks!!
-Jeff
Nevermind, I found it in the docs:
this.WebHtmlEditor1.Toolbar.Items.Remove(ToolbarItemType.InsertFlash);this.WebHtmlEditor1.Toolbar.Items.Remove(ToolbarItemType.InsertWindowsMedia);this.WebHtmlEditor1.Toolbar.Items.Remove(ToolbarItemType.InsertImage);
this