Re: Set fixed size of cutesoft text area

  •  11-09-2011, 9:39 AM

    Re: Set fixed size of cutesoft text area

    Hi WilliamK,
     
    This property works fine for me.
     
    My test page
     
    <!-- #include file = "cuteeditor_files/include_CuteEditor.asp" -->
    <html>
    <head>
        <title>class example</title>
    </head>
    <body>
        <form name="theForm" method="post">
            <div>
                <%   
           Dim editor   
           Set editor = New CuteEditor   
           editor.ID = "Editor1"  
           editor.Text = "<span class='redText'>Hello World</span>"  
           editor.EditorWysiwygModeCss = "asp.css"
           editor.Draw()   
                %>
            </div>
     
        </form>
    </body>
    </html>
     
    asp.css
     
    .redText
    {
        background-color: Red;
    }
     
    Two files deploy into the root of my editor site.
     
    Regards,
     
    Ken
View Complete Thread