Newer
Older
CEE_VE50 / com / digitec / cee / StyledUITextField.as
@cwolsen cwolsen on 23 Aug 2019 521 bytes Ckeaning up commented out code.
package com.digitec.cee
{
	import flash.text.TextFormat;
	import mx.core.UITextField;

	
	/**
	 * This class provides a simple workaround to let you set
	 * the <code.styleSheet</code> property of a TextArea control.
	 */	
	public class StyledUITextField extends UITextField
	{
		/**
		 * Overrides the <code>UITextField.getTextStyles()</code>
		 * method to retrieve the current TextFormat object.
		 */
		override public function getTextStyles():TextFormat
		{
			return getTextFormat();
		}
	}
}