FontMetrics.hx 510 B

123456789101112
  1. package flash.text.engine;
  2. extern class FontMetrics {
  3. function new(emBox : flash.geom.Rectangle, strikethroughPosition : Float, strikethroughThickness : Float, underlinePosition : Float, underlineThickness : Float, subscriptScale : Float, superscriptScale : Float) : Void;
  4. var emBox : flash.geom.Rectangle;
  5. var strikethroughPosition : Float;
  6. var strikethroughThickness : Float;
  7. var subscriptScale : Float;
  8. var superscriptScale : Float;
  9. var underlinePosition : Float;
  10. var underlineThickness : Float;
  11. }