| CuteEditor for PHP 6.1 Class Library |
|
Editor.EditorWysiwygModeCss Property
Specifies the location of the style sheet that will be used by the editable area. Multiple Style Sheets are supported. Example EditorWysiwygModeCss="example.css,/default.css"
Example Code
<?php
$editor=new CuteEditor();
$editor->ID="Editor1";
$editor->Text="Type here";
$editor->FilesPath="CuteEditor_Files";
$editor->EditorWysiwygModeCss="example.css,/default.css";
$editor->Draw();
$editor=null;
//use $_POST["Editor1"]to catch the data
?>
See Also
Editor Class | CuteEditor Namespace