TextJustifier.hx 557 B

123456789101112
  1. package flash.text.engine;
  2. extern class TextJustifier {
  3. @:flash.property var lineJustification(get,set) : LineJustification;
  4. @:flash.property var locale(get,never) : String;
  5. function new(locale : String, lineJustification : LineJustification) : Void;
  6. function clone() : TextJustifier;
  7. private function get_lineJustification() : LineJustification;
  8. private function get_locale() : String;
  9. private function set_lineJustification(value : LineJustification) : LineJustification;
  10. static function getJustifierForLocale(locale : String) : TextJustifier;
  11. }