Specifies the width of the Cute Editor control on the page.
Example Code
<?php
$editor=new CuteEditor();
$editor->ID="Editor1";
$editor->Text="Type here";
$editor->Width="100%";
$editor->Draw();
$editor=null;
//use $_POST["Editor1"]to catch the data
?>