CuteEditor for PHP 6.1 Class Library

Editor.FullPage Property

Specify the FullPage state when the page loads. If this property is set to true then the editor will resize to it's full size when the page loads.


Example Code

<?php
         $editor=new CuteEditor();
         $editor->ID="Editor1";
         $editor->Text="Type here";
         $editor->FilesPath="CuteEditor_Files";
         $editor->FullPage=true;
         $editor->Draw();
         $editor=null; 

         //use $_POST["Editor1"]to catch the data
?>

See Also

Editor Class | CuteEditor Namespace