Has the htmleditor been removed in the ajax control toolkit v15.1? If I try to add the below code to the page, I get the error "The type or namespace name 'HTMLEditor' does not exist in the namespace 'AjaxControlToolkit'". When I look at the sample site code, the HTML Editor Extender is there, but I don't see the HTML Editor.
<%@ Register
Assembly="AjaxControlToolkit"
Namespace="AjaxControlToolkit.HTMLEditor"
TagPrefix="HTMLEditor" %>
Comments: The HTMLEditor control is supported, but was hidden from the Toolbox for reasons mentioned in that [blog post](http://stephenwalther.com/archive/2011/08/01/ajax-control-toolkit-july-2011-release-and-the-new-html). However, the HTMLEditor was renamed HtmlEditor. Please check the [migration guide](https://ajaxcontroltoolkit.codeplex.com/wikipage?title=Upgrade%20your%20project%20to%20AjaxControlToolkit%20v15.1), step 5.
<%@ Register
Assembly="AjaxControlToolkit"
Namespace="AjaxControlToolkit.HTMLEditor"
TagPrefix="HTMLEditor" %>
Comments: The HTMLEditor control is supported, but was hidden from the Toolbox for reasons mentioned in that [blog post](http://stephenwalther.com/archive/2011/08/01/ajax-control-toolkit-july-2011-release-and-the-new-html). However, the HTMLEditor was renamed HtmlEditor. Please check the [migration guide](https://ajaxcontroltoolkit.codeplex.com/wikipage?title=Upgrade%20your%20project%20to%20AjaxControlToolkit%20v15.1), step 5.