TextLineMirrorRegion.hx 820 B

1234567891011121314151617
  1. package flash.text.engine;
  2. extern final class TextLineMirrorRegion {
  3. @:flash.property var bounds(get,never) : flash.geom.Rectangle;
  4. @:flash.property var element(get,never) : ContentElement;
  5. @:flash.property var mirror(get,never) : flash.events.EventDispatcher;
  6. @:flash.property var nextRegion(get,never) : TextLineMirrorRegion;
  7. @:flash.property var previousRegion(get,never) : TextLineMirrorRegion;
  8. @:flash.property var textLine(get,never) : TextLine;
  9. function new() : Void;
  10. private function get_bounds() : flash.geom.Rectangle;
  11. private function get_element() : ContentElement;
  12. private function get_mirror() : flash.events.EventDispatcher;
  13. private function get_nextRegion() : TextLineMirrorRegion;
  14. private function get_previousRegion() : TextLineMirrorRegion;
  15. private function get_textLine() : TextLine;
  16. }