Gets or sets the list of tool bar items.
Example
<?php
$rte=new RichTextEditor();
$rte->Text="Type here";
$rte->ToolbarItems="{save,new,bold,italic,fontname,fontsize}{switchribbon}";
$rte->ID="Editor1";
$rte->MvcInit();
echo $rte->GetString();
// use $_POST["Editor1"]to retrieve the data
?>