By default, both tab that is Design/Html are enable. I would like to know how to hide the HTML tab in WebHtmlEditor (either through code) or by properties?
That works for me. Thanks so much!
Hello,
You must set TabStripDisplay = false on Page_Load
protected void Page_Load(object sender, EventArgs e)
{
this.WebHtmlEditor1.TabStripDisplay = false;
}
Best Regards, Ivan Baev The Infragistics ASP.NET Team