Skin Property

Rich Text Editor for PHP

RichTextEditor for PHP 8.0 Class Library

Editor.Skin Property

Sets the skin for how the toolbar is draw. You can create your custom skin or choose from predefined skins.

office2007blue,office2007silver,office2010blue,office2010silver,office2010black,office2003blue,office2003silver, office2003silver2,officexpblue officexpblue,officexpsilver,smartblue,smartsilver,smartgray

Example

<?php   
    $rte=new RichTextEditor();   
    $rte->Text="Type here"; 
    $rte->Skin="office2007blue";   
    $rte->ID="Editor1";
    $rte->MvcInit();
    echo $rte->GetString();  
    // use $_POST["Editor1"]to retrieve the data  
?> 

See Also

Editor Class | RTE Namespace