Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
610
Hide Advanced Functionality?
posted

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

  • 610
    Verified Answer
    posted

    Nevermind, I found it in the docs:

    1. this.WebHtmlEditor1.Toolbar.Items.Remove(ToolbarItemType.InsertFlash);
      this.WebHtmlEditor1.Toolbar.Items.Remove(ToolbarItemType.InsertWindowsMedia);
      this.WebHtmlEditor1.Toolbar.Items.Remove(ToolbarItemType.InsertImage);

    "-->