/bin/std/flash9/text/engine/TextJustifier.hx

http://github.com/Yoomee/clippy · Haxe · 10 lines · 8 code · 1 blank · 1 comment · 0 complexity · 04d5848b8cf999d940e4e61b23cb5318 MD5 · raw file

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