Update Files

This commit is contained in:
2025-01-22 16:18:30 +01:00
parent ed4603cf95
commit a36294b518
16718 changed files with 2960346 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package flash.text.engine;
extern final class GraphicElement extends ContentElement {
@:flash.property var elementHeight(get,set) : Float;
@:flash.property var elementWidth(get,set) : Float;
@:flash.property var graphic(get,set) : flash.display.DisplayObject;
function new(?graphic : flash.display.DisplayObject, elementWidth : Float = 15, elementHeight : Float = 15, ?elementFormat : ElementFormat, ?eventMirror : flash.events.EventDispatcher, ?textRotation : TextRotation) : Void;
private function get_elementHeight() : Float;
private function get_elementWidth() : Float;
private function get_graphic() : flash.display.DisplayObject;
private function set_elementHeight(value : Float) : Float;
private function set_elementWidth(value : Float) : Float;
private function set_graphic(value : flash.display.DisplayObject) : flash.display.DisplayObject;
}