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

width

The size of the list. リストの大きさ。

Declaration 宣言

var width: ListFormatStyle<Style, Base>.Width

Discussion 議論

The width property controls the size of the list. The locale determines the formatting and abbreviation of the string for the given width. widthプロパティは、リストの大きさを制御します。localeは、文字列の書式設定と省略形をこの与えられたwidthに限定します。

For example, for English: 例えば、英語に対して:


["One", "Two", "Three"].formatted(.list(type: .and, width: .standard))
// “One, Two, and Three”


["One", "Two", "Three"].formatted(.list(type: .and, width: .short))
// “One, Two, & Three” 


["One", "Two", "Three"].formatted(.list(type: .and, width: .narrow))
// “One, Two, Three” 

The default value is ListFormatStyle.Width.standard. 省略時の値は、ListFormatStyle.Width.standardです。

See Also 参照

Modifying a List Format Style リスト書式設定スタイルを修正する