Packageflash.globalization
Classpublic final class CurrencyParseResult
InheritanceCurrencyParseResult Inheritance Object

Language version: ActionScript 3.0
Runtime version: AIR 2

A data structure that represents a currency amount and currency symbol or string that were extracted by parsing a currency value.

See also

CurrencyFormatter.parse()


Public Properties
 PropertyDefined by
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
  currencyString : String
[read-only] The portion of the input string that corresponds to the currency symbol or currency string.
CurrencyParseResult
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
  value : Number
[read-only] The currency amount value that was extracted from the input string.
CurrencyParseResult
Public Methods
 MethodDefined by
  
CurrencyParseResult(value:Number, symbol:String = "")
Constructs a currency parse result object.
CurrencyParseResult
 Inherited
Indicates whether an object has a specified property defined.
Object
 Inherited
Indicates whether an instance of the Object class is in the prototype chain of the object specified as the parameter.
Object
 Inherited
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
Returns the string representation of the specified object.
Object
 Inherited
Returns the primitive value of the specified object.
Object
Property detail
currencyStringproperty
currencyString:String  [read-only]

Language version: ActionScript 3.0
Runtime version: AIR 2

The portion of the input string that corresponds to the currency symbol or currency string.

Implementation
    public function get currencyString():String
valueproperty 
value:Number  [read-only]

Language version: ActionScript 3.0
Runtime version: AIR 2

The currency amount value that was extracted from the input string.

Implementation
    public function get value():Number
Constructor detail
CurrencyParseResult()constructor
public function CurrencyParseResult(value:Number, symbol:String = "")

Language version: ActionScript 3.0
Runtime version: AIR 2

Constructs a currency parse result object.

Parameters
value:Number — A number representing the currency amount value.
 
symbol:String (default = "") — A string representing the currency symbol.