FontDescription.hx 741 B

123456789101112131415
  1. package flash.text.engine;
  2. @:final extern class FontDescription {
  3. var cffHinting : CFFHinting;
  4. var fontLookup : FontLookup;
  5. var fontName : String;
  6. var fontPosture : FontPosture;
  7. var fontWeight : FontWeight;
  8. var locked : Bool;
  9. var renderingMode : RenderingMode;
  10. function new(?fontName : String, ?fontWeight : FontWeight, ?fontPosture : FontPosture, ?fontLookup : FontLookup, ?renderingMode : RenderingMode, ?cffHinting : CFFHinting) : Void;
  11. function clone() : FontDescription;
  12. @:require(flash10_1) static function isDeviceFontCompatible(fontName : String, fontWeight : FontWeight, fontPosture : FontPosture) : Bool;
  13. static function isFontCompatible(fontName : String, fontWeight : FontWeight, fontPosture : FontPosture) : Bool;
  14. }