RichTextEditor for ASP 8.0 Class Library

Editor.FullScreen Property

Gets or sets whether the RichTextEditor control is used in a full-screen mode.

Example

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

Remarks

To enable the full-screen mode for a RichTextEditor control, set the FullScreen property to true. In this case, the control fills the entire page and can be resized together with the browser window.

See Also

Editor Class | RTE Namespace