RichTextEditor for ASP 8.0 Class Library

Editor.ToggleBorder Property

Specifies the ToggleBorder state. ToggleBorder is a handy function which allows you to see the borders without setting things to border = 1 or something like that in code. It's used for all HTML Tables, HTML Cells, Forms and Divs.

Example

<%
    Dim rte      
    Set rte=new RichTextEditor   
    rte.Text="Type here"
    rte.ToggleBorder=false  
    rte.ID="Editor1"
    rte.MvcInit()
    Response.Write(rte.GetString())  
    // use Request.Form("Editor1")to retrieve the data  
%>

See Also

Editor Class | RTE Namespace