패키지 | mx.formatters |
클래스 | public class NumberFormatter |
상속 | NumberFormatter Formatter Object |
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Flex 4.5(으)로 시작하는 경우 이 클래스 대신 spark.formatters.NumberFormatter 클래스를 사용하는 것이 좋습니다. |
The NumberFormatter class formats a valid number by adjusting the decimal rounding and precision, the thousands separator, and the negative sign.
If you use both the rounding
and precision
properties, rounding is applied first, and then you set the decimal length
by using the specified precision
value.
This lets you round a number and still have a trailing decimal;
for example, 303.99 = 304.00.
If an error occurs, an empty String is returned and a String
describing the error is saved to the error
property.
The error
property can have one of the following values:
-
"Invalid value"
means an invalid numeric value is passed to theformat()
method. The value should be a valid number in the form of a Number or a String. -
"Invalid format"
means one of the parameters contain an unusable setting.
The <mx:NumberFormatter>
tag
inherits all of the tag attributes of its superclass,
and adds the following tag attributes:
<mx:NumberFormatter decimalSeparatorFrom="." decimalSeparatorTo="." precision="-1" rounding="none|up|down|nearest" thousandsSeparatorFrom="," thousandsSeparatorTo="," useNegativeSign="true|false" useThousandsSeparator="true|false"/>
관련 API 요소
속성 | 정의 주체 | ||
---|---|---|---|
constructor : Object
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | Object | ||
decimalSeparatorFrom : String
Decimal separator character to use
when parsing an input String. | NumberFormatter | ||
decimalSeparatorTo : String
Decimal separator character to use
when outputting formatted decimal numbers. | NumberFormatter | ||
error : String
Description saved by the formatter when an error occurs. | Formatter | ||
precision : Object
Number of decimal places to include in the output String. | NumberFormatter | ||
rounding : String
Specifies how to round the number. | NumberFormatter | ||
thousandsSeparatorFrom : String
Character to use as the thousands separator
in the input String. | NumberFormatter | ||
thousandsSeparatorTo : String
Character to use as the thousands separator
in the output String. | NumberFormatter | ||
useNegativeSign : Object
If true, format a negative number
by preceding it with a minus "-" sign. | NumberFormatter | ||
useThousandsSeparator : Object
If true, split the number into thousands increments
by using a separator character. | NumberFormatter |
메서드 | 정의 주체 | ||
---|---|---|---|
Constructor. | NumberFormatter | ||
[재정의]
Formats the number as a String. | NumberFormatter | ||
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | ||
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | ||
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | ||
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | ||
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 프리미티브 값을 반환합니다. | Object |
decimalSeparatorFrom | 속성 |
decimalSeparatorFrom:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Decimal separator character to use when parsing an input String.
When setting this property, ensure that the value of the
thousandsSeparatorFrom
property does not equal this property.
Otherwise, an error occurs when formatting the value.
기본값: ".".
구현
public function get decimalSeparatorFrom():String
public function set decimalSeparatorFrom(value:String):void
관련 API 요소
decimalSeparatorTo | 속성 |
decimalSeparatorTo:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Decimal separator character to use when outputting formatted decimal numbers.
When setting this property, ensure that the value of the
thousandsSeparatorTo
property does not equal this property.
Otherwise, an error occurs when formatting the value.
기본값: ".".
구현
public function get decimalSeparatorTo():String
public function set decimalSeparatorTo(value:String):void
관련 API 요소
precision | 속성 |
precision:Object
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Number of decimal places to include in the output String.
You can disable precision by setting it to -1
.
A value of -1
means do not change the precision. For example,
if the input value is 1.453 and rounding
is set to NumberBaseRoundType.NONE
, return a value of 1.453.
If precision
is -1
and you have set some form of
rounding, return a value based on that rounding type.
기본값: -1.
구현
public function get precision():Object
public function set precision(value:Object):void
rounding | 속성 |
rounding:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Specifies how to round the number.
In ActionScript, you can use the following constants to set this property:
NumberBaseRoundType.NONE
, NumberBaseRoundType.UP
,
NumberBaseRoundType.DOWN
, or NumberBaseRoundType.NEAREST
.
Valid MXML values are "down", "nearest", "up", and "none".
기본값: NumberBaseRoundType.NONE.
구현
public function get rounding():String
public function set rounding(value:String):void
관련 API 요소
thousandsSeparatorFrom | 속성 |
thousandsSeparatorFrom:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Character to use as the thousands separator in the input String.
When setting this property, ensure that the value of the
decimalSeparatorFrom
property does not equal this property.
Otherwise, an error occurs when formatting the value.
기본값: ",".
구현
public function get thousandsSeparatorFrom():String
public function set thousandsSeparatorFrom(value:String):void
관련 API 요소
thousandsSeparatorTo | 속성 |
thousandsSeparatorTo:String
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Character to use as the thousands separator in the output String.
When setting this property, ensure that the value of the
decimalSeparatorTo
property does not equal this property.
Otherwise, an error occurs when formatting the value.
기본값: ",".
구현
public function get thousandsSeparatorTo():String
public function set thousandsSeparatorTo(value:String):void
관련 API 요소
useNegativeSign | 속성 |
useNegativeSign:Object
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
If true
, format a negative number
by preceding it with a minus "-" sign.
If false
, format the number
surrounded by parentheses, for example (400).
기본값: true.
구현
public function get useNegativeSign():Object
public function set useNegativeSign(value:Object):void
useThousandsSeparator | 속성 |
useThousandsSeparator:Object
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
If true
, split the number into thousands increments
by using a separator character.
기본값: true.
구현
public function get useThousandsSeparator():Object
public function set useThousandsSeparator(value:Object):void
NumberFormatter | () | 생성자 |
public function NumberFormatter()
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Constructor.
format | () | 메서드 |
override public function format(value:Object):String
언어 버전: | ActionScript 3.0 |
제품 버전: | Flex 3 |
런타임 버전: | Flash Player 9, AIR 1.1 |
Formats the number as a String.
If value
cannot be formatted, return an empty String
and write a description of the error to the error
property.
매개 변수
value:Object — Value to format.
|
String — Formatted String. Empty if an error occurs.
|
<?xml version="1.0" encoding="utf-8"?> <!-- Simple example to demonstrate NumberFormatter. --> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx"> <fx:Script> <![CDATA[ import mx.events.ValidationResultEvent; private var vResult:ValidationResultEvent; // Event handler to validate and format input. private function Format():void { vResult = numVal.validate(); if (vResult.type == ValidationResultEvent.VALID) { formattedNumber.text = numberFormatter.format(inputVal.text); } else { formattedNumber.text = ""; } } ]]> </fx:Script> <fx:Declarations> <mx:NumberFormatter id="numberFormatter" precision="4" useThousandsSeparator="true" useNegativeSign="true"/> <mx:NumberValidator id="numVal" source="{inputVal}" property="text" allowNegative="true" domain="real"/> </fx:Declarations> <s:Panel title="NumberFormatter Example" width="75%" height="75%" horizontalCenter="0" verticalCenter="0"> <mx:Form left="10" right="10" top="10" bottom="10"> <mx:FormItem label="Enter number:"> <s:TextInput id="inputVal" text="" width="50%"/> </mx:FormItem> <mx:FormItem label="Formatted number (precision=4): "> <s:TextInput id="formattedNumber" editable="false" width="50%"/> </mx:FormItem> <mx:FormItem> <s:Button label="Validate and Format" click="Format();"/> </mx:FormItem> </mx:Form> </s:Panel> </s:Application>
Tue Jun 12 2018, 03:17 PM Z