| Property | Defined by | ||
|---|---|---|---|
| lines : Array [read-only]
Returns the content as array that contains each line.
| MultilineString | ||
| numLines : uint [read-only]
Returns the amount of lines in the content.
| MultilineString | ||
| originalString : String [read-only]
Returns the original used string (without line break standarisation).
| MultilineString | ||
| Method | Defined by | ||
|---|---|---|---|
|
MultilineString(string:String)
Constructs a new MultilineString.
| MultilineString | ||
|
getLine(line:uint):String
Returns a specific line within the {
| MultilineString | ||
| lines | property |
lines:Array [read-only]Returns the content as array that contains each line.
Implementation public function get lines():Array
| numLines | property |
numLines:uint [read-only]Returns the amount of lines in the content.
Implementation public function get numLines():uint
| originalString | property |
originalString:String [read-only]Returns the original used string (without line break standarisation).
Implementation public function get originalString():String
| MultilineString | () | constructor |
public function MultilineString(string:String)Constructs a new MultilineString.
Parametersstring:String |
| getLine | () | method |
public function getLine(line:uint):StringReturns a specific line within the {
Parametersline:uint — number of the line to get the content of
|
String — content of the line
|