Package | flash.globalization |
Class | public final class CurrencyParseResult |
Inheritance | CurrencyParseResult Object |
Language Version: | ActionScript 3.0 |
Runtime Versions: | Flash Player 10.1, AIR 2 |
See also
Public Properties
Property | Defined By | ||
---|---|---|---|
constructor : 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 | ||
prototype : 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
Method | Defined By | ||
---|---|---|---|
Constructs a currency parse result object. | CurrencyParseResult | ||
Indicates whether an object has a specified property defined. | Object | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
Returns the string representation of the specified object. | Object | ||
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.
Parametersvalue:Number (default = NaN ) — A number representing the currency amount value.
| |
symbol:String (default = " ") — A string representing the currency symbol.
|
Thu May 20 2010, 02:19 AM -07:00