Gets or sets whether the RichTextEditor control is used in a full-screen mode.
Example
<?php
$rte=new RichTextEditor();
$rte->Text="Type here";
$rte->FullScreen=true;
$rte->ID="Editor1";
$rte->MvcInit();
echo $rte->GetString();
// use $_POST["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.