<?phpclass Editor05 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : Change color of resizable Editor"; $editor = new Editor($this); $editor->setToolbar(Editor::TOOLBAR_SIMPLE); $editor->setColor('#FF0000'); $editor->resizable(true); $this->render = $editor; }}?>