API  0.9.6
 All Classes Files Functions Variables Macros Groups Pages
CPNumberFormatter.h
Go to the documentation of this file.
1 
3 {
4  CPNumberFormatterStyle _numberStyle // @accessors(property=numberStyle);
5  CPString _perMillSymbol // @accessors(property=perMillSymbol);
6  CPString _groupingSeparator // @accessors(property=groupingSeparator);
7  CPNumberFormatterRoundingMode _roundingMode // @accessors(property=roundingMode);
8  CPUInteger _minimumFractionDigits // @accessors(property=minimumFractionDigits);
9  CPUInteger _maximumFractionDigits // @accessors(property=maximumFractionDigits);
10  CPString _currencyCode // @accessors(property=currencyCode);
11  CPString _currencySymbol // @accessors(property=currencySymbol);
12  BOOL _generatesDecimalNumbers // @accessors(property=generatesDecimalNumbers);
13 
14  // Note that we do not implement the 10.0 style number formatter, but the 10.4+ formatter. Therefore
15  // we don't expose this through a `roundingBehavior` property.
16  CPDecimalNumberHandler _numberHandler;
17 }
18 @end