点击或拖拽改变大小

Functions.SetDateCountry 方法

X#
返回并可选地更改确定 X# 日期格式的设置,通过从常量列表中选择对应的日期格式。

命名空间:  XSharp.Core
程序集:  XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法
 FUNCTION SetDateCountry() AS DWORD
查看代码

返回值

类型:UInt32
如果未指定 dwNewSetting,SetDateCountry() 返回上述之一的数字值,表示当前日期和国家设置。
如果指定了 dwNewSetting,则返回先前的设置。
备注
示例
此示例使用 SetDateCountry() 以所有 16 种格式显示今天的日期:
X#
 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
参见