1 2 3 4 5 6 7 8 9 10 11 12
  
     | 
    
      package flash.text;
extern class StyleSheet extends flash.events.EventDispatcher implements Dynamic {
	@:flash.property var styleNames(get,never) : Array<Dynamic>;
	function new() : Void;
	function clear() : Void;
	function getStyle(styleName : String) : flash.utils.Object;
	private function get_styleNames() : Array<Dynamic>;
	function parseCSS(CSSText : String) : Void;
	function setStyle(styleName : String, styleObject : flash.utils.Object) : Void;
	function transform(formatObject : flash.utils.Object) : TextFormat;
}
 
     |