CuteEditor for PHP 6.6 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->ThemeType="OfficeXP";
         $editor->Draw();
         $editor=null; 

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

Members

Member Name Description
Office2007 Sets images, borders and backcolors to Office 2007 style
Office2003 Sets images, borders and backcolors to Office 2003 style
OfficeXP Sets images, borders and backcolors to Office XP style
Office2003Blue Sets images, borders and backcolors to Office 2003 style (Blue theme)

See Also

Editor Class | CuteEditor Namespace