CuteEditor for PHP 6.1 Class Library

Editor.BorderWidth Property

Specifies the width of the border around the outside of the Cute Editor.


Example Code

<?php
         $editor=new CuteEditor();
         $editor->ID="Editor1";
         $editor->Text="Type here";
         $editor->FilesPath="CuteEditor_Files";
         $editor->BorderColor="red";
         $editor->BorderWidth=4;
         $editor->Draw();
         $editor=null; 

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

See Also

Editor Class | CuteEditor Namespace