Package | sekati.text |
Class | public class TextFlow |
TextField
comprised of multiple fields.
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.";
Property | Defined by | ||
---|---|---|---|
columns : uint [read-only]
The number of columns in the flow.
| TextFlow | ||
text : String
The text string flowed through to the fields.
| TextFlow |
Method | Defined by | ||
---|---|---|---|
TextFlow(... fields)
TextFlow Constructor
| TextFlow | ||
reflow():void
Reflow the text between fields (used when visual characteristics of a field changes).
| TextFlow |
Method | Defined by | ||
---|---|---|---|
flowFields(tf0:TextField, tf1:TextField):void
Flow the text string from one field to the next.
| TextFlow |
columns | property |
columns:uint
[read-only]The number of columns in the flow.
Implementation public function get columns():uint
text | property |
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
TextFlow | () | constructor |
public function TextFlow(... fields)
TextFlow Constructor
Parameters... fields |
flowFields | () | method |
protected function flowFields(tf0:TextField, tf1:TextField):void
Flow the text string from one field to the next.
Parameterstf0:TextField |
|
tf1:TextField |
reflow | () | method |
public function reflow():void
Reflow the text between fields (used when visual characteristics of a field changes).