Files
LNXSDK/Kha/Tools/macos_arm64/std/flash/text/TextExtent.hx
2026-05-21 20:15:16 -07:00

12 lines
327 B
Haxe

package flash.text;
extern class TextExtent {
var ascent : Float;
var descent : Float;
var height : Float;
var textFieldHeight : Float;
var textFieldWidth : Float;
var width : Float;
function new(width : Float, height : Float, textFieldWidth : Float, textFieldHeight : Float, ascent : Float, descent : Float) : Void;
}