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
?>