public static function decimalCutting(input:Number, places:Number):Number {
return Math.round( Math.pow(10, places) * input / Math.pow(10, places) );
}
또는 return Math.round( Math.pow(10, places) * input / Math.pow(10, places) );
}
var n:Number;
n.toFixed(2);
n.toFixed(2);
'Flex / AIR / AS' 카테고리의 다른 글
Flex에서 모니터 해상도 및 운영체제 등등 정보 얻기 (0) | 2009.11.19 |
---|---|
ListBase 선택된 아이템 선택 해제하기. (0) | 2009.11.12 |
클래스 생성시 주의할 점 (2) | 2009.11.03 |
[Flex3.0] 데이터그리드 컬럼에 스타일명 개별 설정하기. (0) | 2009.10.23 |
ToolTip 텍스트의 줄바꿈 (0) | 2009.10.16 |