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,17 @@
package flash.text.engine;
extern final class TextLineMirrorRegion {
@:flash.property var bounds(get,never) : flash.geom.Rectangle;
@:flash.property var element(get,never) : ContentElement;
@:flash.property var mirror(get,never) : flash.events.EventDispatcher;
@:flash.property var nextRegion(get,never) : TextLineMirrorRegion;
@:flash.property var previousRegion(get,never) : TextLineMirrorRegion;
@:flash.property var textLine(get,never) : TextLine;
function new() : Void;
private function get_bounds() : flash.geom.Rectangle;
private function get_element() : ContentElement;
private function get_mirror() : flash.events.EventDispatcher;
private function get_nextRegion() : TextLineMirrorRegion;
private function get_previousRegion() : TextLineMirrorRegion;
private function get_textLine() : TextLine;
}