MonthFormat 枚举
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指定 DateTimeFormatter 对象中月份的预期格式。
public enum class MonthFormat
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
enum class MonthFormat
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public enum MonthFormat
var value = Windows.Globalization.DateTimeFormatting.MonthFormat.none
Public Enum MonthFormat
- 继承
-
MonthFormat
- 属性
Windows 要求
设备系列 |
Windows 10 (在 10.0.10240.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v1.0 中引入)
|
字段
Abbreviated | 2 | 显示月份的缩写版本 (例如,“Sep”表示 9 月) 。 |
Default | 1 | 以最自然的方式显示月份。 它可以是缩写、完整或数字,具体取决于上下文,例如所使用的语言或日历。 |
Full | 3 | 显示月份的完整 (,例如“九月”) 。 |
None | 0 | 不显示月份。 |
Numeric | 4 | 将月份显示为数字 (,例如,“9”表示 9) 。 |