Packageorg.apache.flex.core
Interfacepublic interface IFormatBead extends IBead, IEventDispatcher, flash.events.IEventDispatcher
Implementors CurrencyFormatter, DateFormatMMDDYYYYBead, FormatBase, NumberFormatter

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

The IFormatBead interface should be implemented by any bead that provides a formatting service. When the bead instance is created it should listen for change events and set its formattedString property for later retrieveal.



Public Properties
 PropertyDefined By
  eventName : String
The name of the event to listen for, indicating that propertyName property has changed.
IFormatBead
  formattedString : String
[read-only] The formatted result.
IFormatBead
  propertyName : String
The name of the property for the source to be formatted.
IFormatBead
 Inheritedstrand : IStrand
[write-only] The host component for this bead.
IBead
Property Detail
eventNameproperty
eventName:String

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

The name of the event to listen for, indicating that propertyName property has changed. The default event is propertyName+"Changed".


Implementation
    public function get eventName():String
    public function set eventName(value:String):void
formattedStringproperty 
formattedString:String  [read-only]

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

The formatted result.


Implementation
    public function get formattedString():String
propertyNameproperty 
propertyName:String

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

The name of the property for the source to be formatted.


Implementation
    public function get propertyName():String
    public function set propertyName(value:String):void