Functions.SetDateCountry 方法 (UInt32) | |
返回并可选地更改确定 X# 日期格式的设置,通过从常量列表中选择对应的日期格式。
命名空间:
XSharp.Core
程序集:
XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法 FUNCTION SetDateCountry(
dwNewSetting AS DWORD
) AS DWORD
public static uint SetDateCountry(
uint dwNewSetting
)
查看代码参数
- dwNewSetting
- 类型:UInt32
以下常量之一,初始化相应的日期格式(年份值的字符数由 SetCentury() 控制):
返回值
类型:
UInt32
如果未指定
dwNewSetting,SetDateCountry() 返回上述之一的数字值,表示当前日期和国家设置。
如果指定了
dwNewSetting,则返回先前的设置。
备注 示例
此示例使用 SetDateCountry() 以所有 16 种格式显示今天的日期:
1FUNCTION Start()
2 LOCAL I AS INT
3 SetDateCountry(2)
4 SetCentury(FALSE)
5 ? DTOC(TODAY())
6 ? DTOC(92.12.31)
7 ? DTOC(1992.12.31)
8 FOR I := 1 UPTO 8
9 SetDateCountry(I)
10 ? I, DTOC(TODAY()), "!" + DTOC(0) + "!"
11 NEXT
12 ?
13 SetCentury(TRUE)
14 FOR I := 1 UPTO 8
15 SetDateCountry(I)
16 ? I, DTOC(TODAY()), "!" + DTOC(0) + "!"
17 NEXT
参见