Packageorg.apache.flex.html.beads
Classpublic class TextAreaView
InheritanceTextAreaView Inheritance TextFieldViewBase Inheritance Object
Implements IStrand

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The TextAreaView class is the default view for the org.apache.flex.html.TextArea class. It implements the classic desktop-like TextArea with a border and scrollbars. It does not support right-to-left text.



Public Properties
 PropertyDefined By
  beads : Array
The array property that is used to add additional beads to an MXML tag.
TextAreaView
  border : Border
[read-only] The border.
TextAreaView
 Inheritedhtml : String
The html formatted text displayed in the control.
TextFieldViewBase
 Inheritedstrand : IStrand
[write-only] The host component for this bead.
TextFieldViewBase
 Inheritedtext : String
The text displayed in the control.
TextFieldViewBase
 InheritedtextField : CSSTextField
[read-only]
TextFieldViewBase
  vScrollBar : VScrollBar
[read-only] The vertical ScrollBar.
TextAreaView
Protected Properties
 PropertyDefined By
 InheritedautoHeight : Boolean
Whether we are autosizing the height.
TextFieldViewBase
 InheritedautoWidth : Boolean
Whether we are autosizing the width.
TextFieldViewBase
 InheritedinHeightChange : Boolean = false
A flag to prevent looping.
TextFieldViewBase
 InheritedinWidthChange : Boolean = false
A flag to prevent looping.
TextFieldViewBase
 Inherited_strand : IStrand
TextFieldViewBase
Public Methods
 MethodDefined By
  
Constructor.
TextAreaView
  
addBead(bead:IBead):void
Add a bead to the strand.
TextAreaView
  
getBeadByType(classOrInterface:Class):IBead
Find a bead on the strand.
TextAreaView
  
Remove a bead from the strand.
TextAreaView
Protected Methods
 MethodDefined By
 Inherited
Handle autosizing.
TextFieldViewBase
 Inherited
Determine the height of the TextField.
TextFieldViewBase
 Inherited
Determine the size of the TextField.
TextFieldViewBase
 Inherited
Determine the width of the TextField.
TextFieldViewBase
Property Detail
beadsproperty
public var beads:Array

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The array property that is used to add additional beads to an MXML tag. From ActionScript, just call addBead directly.

borderproperty 
border:Border  [read-only]

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The border.


Implementation
    public function get border():Border
vScrollBarproperty 
vScrollBar:VScrollBar  [read-only]

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The vertical ScrollBar.


Implementation
    public function get vScrollBar():VScrollBar
Constructor Detail
TextAreaView()Constructor
public function TextAreaView()

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

Constructor.

Method Detail
addBead()method
public function addBead(bead:IBead):void

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

Add a bead to the strand.

Parameters

bead:IBead — The bead to be added.

getBeadByType()method 
public function getBeadByType(classOrInterface:Class):IBead

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

Find a bead on the strand.

Parameters

classOrInterface:Class — The class or interface to use to search for the bead

Returns
IBead — The bead.
removeBead()method 
public function removeBead(value:IBead):IBead

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

Remove a bead from the strand.

Parameters

value:IBead — bead The bead to be removed.

Returns
IBead