Font.hx 374 B

1234567891011
  1. package flash.text;
  2. extern class Font {
  3. var fontName(default,null) : String;
  4. var fontStyle(default,null) : FontStyle;
  5. var fontType(default,null) : FontType;
  6. function new() : Void;
  7. function hasGlyphs(str : String) : Bool;
  8. static function enumerateFonts(enumerateDeviceFonts : Bool = false) : Array<Font>;
  9. static function registerFont(font : Class<Dynamic>) : Void;
  10. }