Packagelunas
Interfacepublic interface TextInput extends Data, Focusable, Groupable
Implementors CoreTextInput

This interface defines all methods to implement in a text input display components.



Public Properties
 PropertyDefined By
  condenseWhite : Boolean
Specifies whether extra white space (spaces, line breaks, and so on) should be removed in a TextInput control with HTML text.
TextInput
 Inheriteddata : *
Indicates the data value object of the component.
Data
  displayAsPassword : Boolean
Indicates whether this control is used for entering passwords.
TextInput
  editable : Boolean
Indicates whether the user is allowed to edit the text in this control.
TextInput
 Inheritedgroup : Boolean
Indicates with a boolean if this object is grouped.
Groupable
 InheritedgroupName : String
Indicates the name of the group of this object.
Groupable
  htmlText : String
Specifies the text displayed by the TextInput component, including HTML markup that expresses the styles of that text.
TextInput
  maxChars : int
Maximum number of characters that users can enter in the text field.
TextInput
  restrict : String
Indicates the set of characters that a user can enter into the control.
TextInput
 Inheritedselected : Boolean
A flag that indicates whether this control is selected.
Focusable
  text : String
Plain text that appears in the component.
TextInput
  textField : TextField
The internal TextField that renders the text of this TextInput.
TextInput
Property Detail
condenseWhiteproperty
condenseWhite:Boolean

Specifies whether extra white space (spaces, line breaks, and so on) should be removed in a TextInput control with HTML text.


Implementation
    public function get condenseWhite():Boolean
    public function set condenseWhite(value:Boolean):void
displayAsPasswordproperty 
displayAsPassword:Boolean

Indicates whether this control is used for entering passwords.


Implementation
    public function get displayAsPassword():Boolean
    public function set displayAsPassword(value:Boolean):void
editableproperty 
editable:Boolean

Indicates whether the user is allowed to edit the text in this control.


Implementation
    public function get editable():Boolean
    public function set editable(value:Boolean):void
htmlTextproperty 
htmlText:String

Specifies the text displayed by the TextInput component, including HTML markup that expresses the styles of that text.


Implementation
    public function get htmlText():String
    public function set htmlText(value:String):void
maxCharsproperty 
maxChars:int

Maximum number of characters that users can enter in the text field.


Implementation
    public function get maxChars():int
    public function set maxChars(value:int):void
restrictproperty 
restrict:String

Indicates the set of characters that a user can enter into the control.


Implementation
    public function get restrict():String
    public function set restrict(value:String):void
textproperty 
text:String

Plain text that appears in the component.


Implementation
    public function get text():String
    public function set text(value:String):void
textFieldproperty 
textField:TextField

The internal TextField that renders the text of this TextInput.


Implementation
    public function get textField():TextField
    public function set textField(value:TextField):void