FlashTextEditor.iniFormat

Availability

Flash Player 8
Flash Player 9(AS3 version)

Usage

myTextEditor.iniFormat:Object

Description

Initial format of the targeted text field.
When component is parsing flash HTML for clean output, this format will be used for comparison.

Examples

The following code will output property names and values of the initial format.

var initialFormat:Array = myTextEditor.iniFormat;
for (var i:String in initialFormat) {
	trace(i + ": " + initialFormat[i]);
}