ActionScript® 3.0 Reference for the Adobe® Flash® Platform
Home  |  Show Packages and Classes List |  Packages  |  Classes  |  What's New  |  Index  |  Appendixes
flash.globalization 

CurrencyParseResult  - AS3

Packageflash.globalization
Classpublic final class CurrencyParseResult
InheritanceCurrencyParseResult Inheritance Object

Language Version: ActionScript 3.0
Runtime Versions: Flash Player 10.1, AIR 2

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

Related API Elements



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
  value : Number
[read-only] The currency amount value that was extracted from the input string.
CurrencyParseResult
Public Methods
 MethodDefined By
  
CurrencyParseResult(value:Number = NaN, 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

currencyString

property
currencyString:String  [read-only]

Language Version: ActionScript 3.0
Runtime Versions: Flash Player 10.1, AIR 2

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



Implementation
    public function get currencyString():String

value

property 
value:Number  [read-only]

Language Version: ActionScript 3.0
Runtime Versions: Flash Player 10.1, 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 = NaN, symbol:String = "")

Language Version: ActionScript 3.0
Runtime Versions: Flash Player 10.1, AIR 2

Constructs a currency parse result object.

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