Paket | mx.formatters |
Klass | public class NumberBase |
Arv | NumberBase Object |
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Relaterade API-element
Egenskap | Definieras med | ||
---|---|---|---|
constructor : Object
En referens till klassobjektet eller konstruktorfunktionen för en given objektinstans. | Object | ||
decimalSeparatorFrom : String
Decimal separator character to use
when parsing an input String. | NumberBase | ||
decimalSeparatorTo : String
Decimal separator character to use
when outputting formatted decimal numbers. | NumberBase | ||
isValid : Boolean = false
If true, the format succeeded,
otherwise it is false. | NumberBase | ||
thousandsSeparatorFrom : String
Character to use as the thousands separator
in the input String. | NumberBase | ||
thousandsSeparatorTo : String
Character to use as the thousands separator
in the output String. | NumberBase |
Metod | Definieras med | ||
---|---|---|---|
NumberBase(decimalSeparatorFrom:String = ".", thousandsSeparatorFrom:String = ",", decimalSeparatorTo:String = ".", thousandsSeparatorTo:String = ",")
Constructor. | NumberBase | ||
Formats a number in exponent notation, into
a number in decimal notation. | NumberBase | ||
Formats a number by replacing the default decimal separator, ".",
with the decimal separator specified by decimalSeparatorTo. | NumberBase | ||
Formats a negative number with either a minus sign (-)
or parentheses (). | NumberBase | ||
Formats a number by setting its decimal precision by using
the decimalSeparatorTo property as the decimal separator. | NumberBase | ||
Formats a number by rounding it. | NumberBase | ||
Formats a number by rounding it and setting the decimal precision. | NumberBase | ||
Formats a number by using
the thousandsSeparatorTo property as the thousands separator
and the decimalSeparatorTo property as the decimal separator. | NumberBase | ||
Anger om det finns en egenskap angiven för ett objekt. | Object | ||
Anger om en instans av klassen Object finns i prototypkedjan för objektet som anges som parameter. | Object | ||
Extracts a number from a formatted String. | NumberBase | ||
Anger om den angivna egenskapen finns och är uppräkningsbar. | Object | ||
Anger tillgänglighet för en dynamisk egenskap för slingåtgärder. | Object | ||
Returnerar det här objektets strängrepresentation, formaterad i enlighet med språkspecifika konventioner. | Object | ||
Returnerar det angivna objektets strängbeteckning. | Object | ||
Returnerar det angivna objektets primitiva värde. | Object |
decimalSeparatorFrom | egenskap |
public var decimalSeparatorFrom:String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Decimal separator character to use when parsing an input String.
Standardvärdet är ".".
decimalSeparatorTo | egenskap |
public var decimalSeparatorTo:String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Decimal separator character to use when outputting formatted decimal numbers.
Standardvärdet är ".".
isValid | egenskap |
public var isValid:Boolean = false
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
If true
, the format succeeded,
otherwise it is false
.
thousandsSeparatorFrom | egenskap |
public var thousandsSeparatorFrom:String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Character to use as the thousands separator in the input String.
Standardvärdet är ",".
thousandsSeparatorTo | egenskap |
public var thousandsSeparatorTo:String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Character to use as the thousands separator in the output String.
Standardvärdet är ",".
NumberBase | () | Konstruktor |
public function NumberBase(decimalSeparatorFrom:String = ".", thousandsSeparatorFrom:String = ",", decimalSeparatorTo:String = ".", thousandsSeparatorTo:String = ",")
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Constructor.
ParametrardecimalSeparatorFrom:String (default = ". ") — Decimal separator to use
when parsing an input String.
| |
thousandsSeparatorFrom:String (default = ", ") — Character to use
as the thousands separator in the input String.
| |
decimalSeparatorTo:String (default = ". ") — Decimal separator character to use
when outputting formatted decimal numbers.
| |
thousandsSeparatorTo:String (default = ", ") — Character to use
as the thousands separator in the output String.
|
expandExponents | () | metod |
public function expandExponents(value:String):String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Formats a number in exponent notation, into a number in decimal notation.
Parametrar
value:String — String to process in exponent notation.
|
String — Formatted number.
|
formatDecimal | () | metod |
public function formatDecimal(value:String):String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Formats a number by replacing the default decimal separator, ".",
with the decimal separator specified by decimalSeparatorTo
.
Parametrar
value:String — The String value of the Number
(formatted American style ####.##).
|
String — String representation of the input where "." is replaced
with the decimal formatting character.
|
formatNegative | () | metod |
public function formatNegative(value:String, useSign:Boolean):String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Formats a negative number with either a minus sign (-) or parentheses ().
Parametrar
value:String — Value to be formatted.
| |
useSign:Boolean — If true , use a minus sign (-).
If false , use parentheses ().
|
String — Formatted number.
|
formatPrecision | () | metod |
public function formatPrecision(value:String, precision:int):String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Formats a number by setting its decimal precision by using
the decimalSeparatorTo
property as the decimal separator.
Parametrar
value:String — Value to be formatted.
| |
precision:int — Number of decimal points to use.
|
String — Formatted number.
|
formatRounding | () | metod |
public function formatRounding(value:String, roundType:String):String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Formats a number by rounding it. The possible rounding types are defined by mx.formatters.NumberBaseRoundType.
Parametrar
value:String — Value to be rounded.
| |
roundType:String — The type of rounding to perform:
NumberBaseRoundType.NONE, NumberBaseRoundType.UP,
NumberBaseRoundType.DOWN, or NumberBaseRoundType.NEAREST.
|
String — Formatted number.
|
Relaterade API-element
formatRoundingWithPrecision | () | metod |
public function formatRoundingWithPrecision(value:String, roundType:String, precision:int):String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Formats a number by rounding it and setting the decimal precision. The possible rounding types are defined by mx.formatters.NumberBaseRoundType.
Parametrar
value:String — Value to be rounded.
| |
roundType:String — The type of rounding to perform:
NumberBaseRoundType.NONE, NumberBaseRoundType.UP,
NumberBaseRoundType.DOWN, or NumberBaseRoundType.NEAREST.
| |
precision:int — int of decimal places to use.
|
String — Formatted number.
|
Relaterade API-element
formatThousands | () | metod |
public function formatThousands(value:String):String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Formats a number by using
the thousandsSeparatorTo
property as the thousands separator
and the decimalSeparatorTo
property as the decimal separator.
Parametrar
value:String — Value to be formatted.
|
String — Formatted number.
|
parseNumberString | () | metod |
public function parseNumberString(str:String):String
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | Flash Player 9, AIR 1.1 |
Extracts a number from a formatted String. Examines the String from left to right and returns the first number sequence. Ignores thousands separators and includes the decimal and numbers trailing the decimal.
Parametrar
str:String — String to parse for the numeric value.
|
String — Value, which can be a decimal.
|
Tue Jun 12 2018, 01:40 PM Z