Examples
Readonly support
This example shows you can set ReadOnly property to true if you would like to display read-only content of Editor in some situations.
Demo Code:
<%
Dim rte
Set rte=new RichTextEditor
rte.Name="Editor1"
rte.ReadOnly = true
rte.MvcInit()
%>