Как вы сказали, getTextFormat
(beginIndex:int = -1, endIndex:int = -1)
просто возвращает объект TextFormat
, заполненный информацией о форматировании для указанного диапазона текста (только свойства, общие для всего указанного текста, устанавливаются в результирующий TextFormat
объект).
Если вам нужна информация о форматировании всего текста , прочитайте свойство htmlText TextField
после вызова setTextFormat
. Он содержит HTML-представление содержимого текстового поля.
var str:String = "The quick brown fox jumps over the lazy dog\n";
var tf:TextField = new TextField();
tf.multiline = true;
tf.text = str + str + str;
var f:TextFormat = new TextFormat("Arial", 15, 0xFF0000, true, false,
true, null, null, TextFormatAlign.CENTER);
tf.setTextFormat(f, 0, str.length);
f = new TextFormat("Courier New", 12, 0x00FF00, false, false,
false, "http://www.google.com", null, TextFormatAlign.LEFT);
tf.setTextFormat(f, str.length, 2 * str.length);
f = new TextFormat("Times New Roman", 12, 0x0000FF, false, true,
true, null, null, TextFormatAlign.RIGHT);
tf.setTextFormat(f, 2 * str.length, str.length * 3);
tf.width = 400;
tf.height = 300
addChild(tf);
trace(tf.htmlText);
Вывод:
<P ALIGN="CENTER">
<FONT FACE="Arial" SIZE="15" COLOR="#FF0000" LETTERSPACING="0" KERNING="0">
<B>
<U>The quick brown fox jumps over the lazy dog</U>
</B>
</FONT>
</P>
<P ALIGN="LEFT">
<FONT FACE="Courier New" SIZE="12" COLOR="#00FF00" LETTERSPACING="0" KERNING="0">
<A HREF="http://www.google.com" TARGET="">The quick brown fox jumps over the lazy dog</A>
</FONT>
</P>
<P ALIGN="RIGHT">
<FONT FACE="Times New Roman" SIZE="12" COLOR="#0000FF" LETTERSPACING="0" KERNING="0">
<I>
<U>The quick brown fox jumps over the lazy dog</U>
</I>
</FONT>
</P>