window.runtime property | window.runtime.flash.globalization.CurrencyParseResult |
Inheritance | CurrencyParseResult Object |
Runtime Versions: | 2 |
See also
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 | ||
---|---|---|---|
CurrencyParseResult(value:Number = NaN, symbol:String = "")
Constructs a currency parse result object. | CurrencyParseResult | ||
hasOwnProperty(name:String):Boolean
Indicates whether an object has a specified property defined. | Object | ||
isPrototypeOf(theClass:Object):Boolean
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
propertyIsEnumerable(name:String):Boolean
Indicates whether the specified property exists and is enumerable. | Object | ||
setPropertyIsEnumerable(name:String, isEnum:Boolean = true):void
Sets the availability of a dynamic property for loop operations. | Object | ||
toLocaleString():String
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
toString():String
Returns the string representation of the specified object. | Object | ||
valueOf():Object
Returns the primitive value of the specified object. | Object |
Property Detail
currencyString | property |
currencyString:String
[read-only] Runtime Versions: | 2 |
The portion of the input string that corresponds to the currency symbol or currency string.
value | property |
value:Number
[read-only] Runtime Versions: | 2 |
The currency amount value that was extracted from the input string.
Constructor Detail
CurrencyParseResult | () | Constructor |
public function CurrencyParseResult(value:Number = NaN, symbol:String = "")
Runtime Versions: | 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 Sep 29 2011, 02:34 AM -07:00