<?php class Textarea05 extends Page{ public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : TextArea with height and width defined and no wrap text";
$this->render = new TextArea($this); $text = "TextArea with height\n"; $text .= "and width defined and no wrap text\n"; $text .= "This is a loooooooooooooooooonnnnnnnnnnnnnnnnnnnnnnnnnggggggggggggg string"; $this->render->setValue($text); $this->render->noWrap()->setHeight(100)->setWidth(300); } } ?>