/******************************************
* @author Maria A. Zamora
* @company Digitec Interactive Inc.
* @version 0.1
* @date 12/14/2010
*
* SearchCEE class for searchFrame4 movie of the CEE application
* CS5 version of com.digitec.cee.MultilineCellRender
*
*******************************************/
package com.digitec.cee
{
import fl.controls.listClasses.CellRenderer;
public class MultiLineCell extends CellRenderer
{
public function MultiLineCell()
{
textField.wordWrap = true;
textField.multiline = true;
textField.autoSize = "left";
}
override protected function drawLayout():void {
textField.width = this.width;
textField.htmlText = textField.text;
super.drawLayout();
}
}
}