| CuteEditor for PHP 6.6 Class Library |
|
Editor.EnableBrowserContextMenu Property
Specify whether the browser context menu is enabled. Set this to false to disable the browser context menu.
Example Code
<?php
$editor=new CuteEditor();
$editor->ID="Editor1";
$editor->Text="Type here";
$editor->EnableBrowserContextMenu=false;
$editor->Draw();
$editor=null;
//use $_POST["Editor1"]to catch the data
?>
See Also
Editor Class | CuteEditor Namespace