Files
LNXSDK/Kha/Tools/macos_x64/std/flash/text/TextRun.hx

9 lines
201 B
Haxe
Raw Normal View History

2026-05-22 11:48:42 -07:00
package flash.text;
extern class TextRun {
var beginIndex : Int;
var endIndex : Int;
var textFormat : TextFormat;
function new(beginIndex : Int, endIndex : Int, textFormat : TextFormat) : Void;
}