Instance Property インスタンスプロパティ

width

The width of the measurement unit. 寸法単位の幅。

Declaration 宣言

var width: Measurement<UnitType>.FormatStyle.UnitWidth

Discussion 議論

The width property specifies the display of the measurement unit. The possible values are abbreviated, narrow, and wide. The format style represents the unit in the shortest notation available. widthプロパティは、寸法単位の表示を指定します。可能な値は、abbreviatednarrow、そしてwideです。書式設定スタイルは、単位を可能な最も短い表記で表します。

The following example shows 100 degrees Fahrenheit in each width for the en_US locale. 以下の例は、100 degrees Fahrenheitをそれぞれの幅でen_USロケールに対して示します。


let temperatureMeasurement = Measurement<UnitTemperature>(value: 100, unit: .fahrenheit)
temperatureMeasurement.formatted(.measurement(width: .wide)) // 100 degrees Fahrenheit
temperatureMeasurement.formatted(.measurement(width: .abbreviated)) // 100°F
temperatureMeasurement.formatted(.measurement(width: .narrow)) // 100°

See Also 参照

Modifying a Measurement Format Style 寸法書式設定スタイルを修正する