Packagesekati.text
Classpublic class TextFlow

TextFlow provides a virtual multi-column TextField comprised of multiple fields.


Example
    var flowField : TextFlow = new TextFlow( tf0, tf1, tf2 );
    flowField.text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. In id mi ac magna iaculis congue.";
  



Public Properties
 PropertyDefined by
  columns : uint
[read-only] The number of columns in the flow.
TextFlow
  text : String
The text string flowed through to the fields.
TextFlow
Public Methods
 MethodDefined by
  
TextFlow(... fields)
TextFlow Constructor
TextFlow
  
reflow():void
Reflow the text between fields (used when visual characteristics of a field changes).
TextFlow
Protected Methods
 MethodDefined by
  
flowFields(tf0:TextField, tf1:TextField):void
Flow the text string from one field to the next.
TextFlow
Property detail
columnsproperty
columns:uint  [read-only]

The number of columns in the flow.

Implementation
    public function get columns():uint
textproperty 
text:String  [read-write]

The text string flowed through to the fields.

Implementation
    public function get text():String
    public function set text(value:String):void
Constructor detail
TextFlow()constructor
public function TextFlow(... fields)

TextFlow Constructor

Parameters
... fields
Method detail
flowFields()method
protected function flowFields(tf0:TextField, tf1:TextField):void

Flow the text string from one field to the next.

Parameters
tf0:TextField
 
tf1:TextField
reflow()method 
public function reflow():void

Reflow the text between fields (used when visual characteristics of a field changes).