TextJustifier.hx 325 B

123456789
  1. package flash.text.engine;
  2. extern class TextJustifier {
  3. var lineJustification : LineJustification;
  4. var locale(default,null) : String;
  5. function new(locale : String, lineJustification : LineJustification) : Void;
  6. function clone() : TextJustifier;
  7. static function getJustifierForLocale(locale : String) : TextJustifier;
  8. }