Hi kresa3333,
1. How to hide the editor border
Please set property BorderStyle to none
<CE:Editor ID="Editor1" runat="server" BorderStyle="none">
</CE:Editor>
2. Set property EditorBodyStyle to direction:rtl
<CE:Editor ID="Editor1" runat="server" EditorBodyStyle="direction:rtl">
</CE:Editor>
3. Please try the example below, it shows you how to hide the scroll bar
- <%@ Page Language="C#" %>
-
- <%@ Register Namespace="CuteEditor" Assembly="CuteEditor" TagPrefix="CE" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head id="Head1" runat="server">
- <title>example</title>
- </head>
- <body>
- <form id="form1" runat="server">
- <div style="direction: rtl">
- </div>
- <CE:Editor ID="Editor1" runat="server" ResizeMode="AutoAdjust">
- </CE:Editor>
- </form>
- </body>
- </html>
-
- <script>
- function CuteEditor_OnInitialized(editor)
- {
- var editdoc = editor.GetDocument();
- editdoc.body.style.overflow="hidden";
- }
- </script>
Regards,
Ken