TextSnapshot.hx 705 B

1234567891011121314
  1. package flash.text;
  2. extern class TextSnapshot {
  3. var charCount(default,null) : Int;
  4. function new() : Void;
  5. function findText(beginIndex : Int, textToFind : String, caseSensitive : Bool) : Int;
  6. function getSelected(beginIndex : Int, endIndex : Int) : Bool;
  7. function getSelectedText(?includeLineEndings : Bool) : String;
  8. function getText(beginIndex : Int, endIndex : Int, ?includeLineEndings : Bool) : String;
  9. function getTextRunInfo(beginIndex : Int, endIndex : Int) : Array<Dynamic>;
  10. function hitTestTextNearPos(x : Float, y : Float, ?maxDistance : Float) : Float;
  11. function setSelectColor(?hexColor : UInt) : Void;
  12. function setSelected(beginIndex : Int, endIndex : Int, select : Bool) : Void;
  13. }