您的位置:首页 > Web前端 > HTML

CuteEditor 6.0 使用方法详解

2008-11-26 10:02 375 查看
 

基本属性:

        EditorWysiwygModeCss    :设置样式

        ThemeType       :设置风格

        AutoConfigure   :选择功能是简单还是复杂的

        Text            :设置加载时候默认内容

        MaxHTMLLength   :设置最大长度

        BreakElement    :默认“回车”产生什么HTML

        URLType         :没发现有什么区别

        ResizeMode      :自动长度(长度设置的几中形式)

        ReadOnly        :是否为只读

        CustomCulture   :设置语言类型 china 为zh-cn

        EditCompleteDocument    :设置是否完整的HTML页面代码(也就是说是不是包括html头)

        AllowPasteHtml  :是否允许粘帖HTML代码

        EnableContextMenu       :在文本里是否显示右键菜单

 

        调用模板 :

      void Page_Load(object sender, System.EventArgs e)
  {
         if (!IsPostBack)
         {
             //this.Editor1.Text = "";

             //Editor1.LoadHtml("templates/template3.htm");

         }
  }

 

控制工具拦显示

 

在CuteSoft_Client/CuteEditor/Configuration/AutoConfigure 里设置

 

控制右键显示

CuteSoft_Client/CuteEditor/Configuration/ContextMenuMode里设置

 

设置权限

CuteSoft_Client/CuteEditor/Configuration/Security里设置

 

设置工具拦按钮具体功能

CuteSoft_Client/CuteEditor/Configuration/Shared 里设置

 

设置工具拦按钮具体功能

CuteSoft_Client/CuteEditor/Configuration/Shared 里设置

 

 

设置语言

CuteSoft_Client/CuteEditor/Configuration/Languages里设置

 

 

感觉 CuteEditor 每处都可以 改变,因为它整体思路都是用摸板,具体体现形式写在配置文件里面。用户修改配置文件或是它提供的属性就可以实现自己的功能!

 

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  html 工具 语言