var minimumSignificantDigits : Int
var maximumSignificantDigits : Int
Availability 有効性
Technology
var usesSignificantDigits: Bool
{ get set }
The Number
class has two ways of determining how many digits to represent: using integer and fraction digits and using significant digits.
Number
クラスは、どのくらい多くの桁が表されることになるか決定する2つの方法を持ちます: 整数と小数桁を使ってそして有効桁数を使って。
When this property is set to false
, numbers are formatted according to whether you want them formatted as fractions or as integers. For more information, see Configuring Integer and Fraction Digits. This property is false
by default.
このプロパティがfalse
に設定される場合、数値はあなたがそれを小数としてまたは整数として書式設定したいかどうかによって書式設定されます。さらなる情報として、整数および小数桁を構成設定するを見てください。このプロパティは、省略時にはfalse
です。
Set this property to true
to format numbers according to the significant digits configuration specified by the minimum
and maximum
properties. By default, the minimum number of significant digits is 1, and the maximum number of significant digits is 6.
このプロパティをtrue
に設定することで、数値をminimum
およびmaximum
プロパティによって指定される有効桁数構成設定によって書式設定してください。初期状態では、最小限の有効桁数は1です、そして最大限の有効桁数は6です。
Note 注意
When a number formatter is configured to use significant digits, it ignores any minimum or maximum values used to set integer or fraction digits. 数値書式設定が有効桁数を使うように構成設定される場合、それは整数または小数の桁を設定するのに使われるあらゆる最小限または最大限の値を無視します。
The following code demonstrates the effect of configuring uses
when formatting various numbers:
以下のコードは、uses
を様々な数値を書式設定している時に構成設定する効果を実演します:
var minimumSignificantDigits : Int
var maximumSignificantDigits : Int