Re: Text Wrap in editor area

  •  01-31-2005, 1:40 PM

    Re: Text Wrap in editor area

    Hello Adam,

    Please find the code below;
    Thanks for your fast reply...

    Greetings,
    Wim





    <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
        <td height="5" class="TEXT_11px">&nbsp;Contents Editor:
                       
                <% dim content
                     If Session("ContentResult") <> "" then
                      Content = Session("ContentResult")
                      Else
                      content =  "Type here..."    
                     End If
                 
                 Dim editor
                 Set editor = New CuteEditor 
           
                 editor.ID = "Editor1"  
                 editor.Text = content
                 editor.FilesPath = "/Cuteeditor/CuteEditor_Files"
                 editor.ImageGalleryPath = "/Cuteeditor/Uploads"
                  
                 editor.DocumentPath= "/Cuteeditor/Uploads"         
                 editor.MaxImageSize = 50
                 editor.MaxMediaSize = 20000
                      
                 editor.AutoConfigure = "yskydhlairnews"
                 editor.FontFacesList = "Arial"
                 editor.FontSizesList = "1,2,3,4,5,7"                                             

       
                 editor.Width = 574
                 editor.Height = 200
                 editor.Draw()        

             %>
                      </td>
                    </tr>
                  </table>
View Complete Thread