CuteEditor for PHP 6.1 Class Library

Editor.ThemeType Property

Sets the theme for how the toolbar is draw. You can create your custom skin or choose from predefined themes: Custom / Office2000 / OfficeXP / Office2003 / Office2003_BlueTheme


Example Code

<?php
         $editor=new CuteEditor();
         $editor->ID="Editor1";
         $editor->Text="Type here";
         $editor->FilesPath="CuteEditor_Files";
         $editor->ThemeType="OfficeXP";
         $editor->Draw();
         $editor=null; 

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

Members

Member Name Description
Custom You must use this setting if you want custom skins. Otherwise the other settings will override your settings.
Office2000 Sets images, borders and backcolors to Office 2000 style
Office2003 Sets images, borders and backcolors to Office 2003 style
OfficeXP Sets images, borders and backcolors to Office XP style
Office2003_BlueTheme Sets images, borders and backcolors to Office 2003 style (Blue theme)

See Also

Editor Class | CuteEditor Namespace