The estimated source of the TextRun class is:
public dynamic class TextRun extends Object {
public beginIndex:int;
public endIndex:int;
public textFormat:flash.text.TextFormat;
}
For more information see flash.text.TextField.getTextRuns().
For all those secrets in Flex, those that aren't known, those that aren't published, or those that are just hard to find for some unknown reason, like percentWidth.
public dynamic class TextRun extends Object {
public beginIndex:int;
public endIndex:int;
public textFormat:flash.text.TextFormat;
}
1 comment:
According to describeType it is implemented like this:
package flash.test
{
import flash.text.TextFormat;
[ExcludeClass]
class TextRun extends Object
{
public var textFormat:TextFormat;
public var beginIndex:int;
public var endIndex:int;
public function TextRun(beginIndex:int, endIndex:int, textFormat:TextFormat)
{
this.beginIndex = beginIndex;
this.endIndex = endIndex;
this.textFormat = textFormat;
};
};
};
Greetz Erik
Post a Comment