Package | flash.globalization |
Class | public final class CurrencyParseResult |
Inheritance | CurrencyParseResult Object |
Language version: | ActionScript 3.0 |
Runtime version: | AIR 2 |
See also
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 |
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 |
currencyString | property |
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
value | property |
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
CurrencyParseResult | () | constructor |
public function CurrencyParseResult(value:Number, symbol:String = "")
Language version: | ActionScript 3.0 |
Runtime version: | AIR 2 |
Constructs a currency parse result object.
Parametersvalue:Number — A number representing the currency amount value.
|
|
symbol:String (default = " ") — A string representing the currency symbol.
|