CuteEditor for .NET 6.1 Class Library

Editor.EnableObjectResizing Property

Specify whether or not to allow the users resize an object winthin the Cute Editor. For example, if you want to prevent people from resizing images, table winthin the Cute Editor, you can set it to false.


Example Code

<?php
         $editor=new CuteEditor();
         $editor->ID="Editor1";
         $editor->Text="Type here";
         $editor->EnableObjectResizing=false;
         $editor->Draw();
         $editor=null; 

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

See Also

Editor Class | CuteEditor Namespace