Adobe® AIR® API Reference for HTML Developers
Home  |  Show Classes List |  Index  |  Appendixes

Language Reference only       
NumberParseResult 
window.runtime propertywindow.runtime.flash.globalization.NumberParseResult
InheritanceNumberParseResult Inheritance Object

Runtime Versions:  2

A data structure that holds information about a number that was extracted by parsing a string.

The number string can contain a prefix and suffix surrounding a number. In such cases the startIndex property is set to the first character of the number. Also, the endIndex property is set to the index of the character that follows the last character of the number.

See also



Properties
 PropertyDefined By
 Inheritedconstructor : Object
A reference to the class object or constructor function for a given object instance.
Object
  endIndex : int
[read-only] The index of the character after the last character of the numeric portion of the input string.
NumberParseResult
 Inheritedprototype : Object
[static] A reference to the prototype object of a class or function object.
Object
  startIndex : int
[read-only] The index of the first character of the numeric portion of the input string.
NumberParseResult
  value : Number
[read-only] The value of the numeric portion of the input string.
NumberParseResult
Public Methods
 MethodDefined By
  
NumberParseResult(value:Number = NaN, startIndex:int = 0x7fffffff, endIndex:int = 0x7fffffff)
Constructs a number parse result object.
NumberParseResult
 Inherited
hasOwnProperty(name:String):Boolean
Indicates whether an object has a specified property defined.
Object
 Inherited
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
 Inherited
propertyIsEnumerable(name:String):Boolean
Indicates whether the specified property exists and is enumerable.
Object
 Inherited
setPropertyIsEnumerable(name:String, isEnum:Boolean = true):void
Sets the availability of a dynamic property for loop operations.
Object
 Inherited
toLocaleString():String
Returns the string representation of this object, formatted according to locale-specific conventions.
Object
 Inherited
toString():String
Returns the string representation of the specified object.
Object
 Inherited
valueOf():Object
Returns the primitive value of the specified object.
Object
Property Detail

endIndex

property
endIndex:int  [read-only]

Runtime Versions:  2

The index of the character after the last character of the numeric portion of the input string.

startIndex

property 
startIndex:int  [read-only]

Runtime Versions:  2

The index of the first character of the numeric portion of the input string.

value

property 
value:Number  [read-only]

Runtime Versions:  2

The value of the numeric portion of the input string.

Constructor Detail

NumberParseResult

()Constructor
public function NumberParseResult(value:Number = NaN, startIndex:int = 0x7fffffff, endIndex:int = 0x7fffffff)

Runtime Versions:  2

Constructs a number parse result object. NumberParseResult objects are usually created by the NumberFormatter.parse() and NumberFormatter.parseNumber() methods, rather than by calling this constructor directly.

Parameters
value:Number (default = NaN) — The value of the numeric portion of the input string.
 
startIndex:int (default = 0x7fffffff) — The index of the first character of the number in the input string.
 
endIndex:int (default = 0x7fffffff) — The index of the character after the last character of the number in the input string.

See also