Functions.TToD 方法 | |
从 DateTime 表达式返回一个日期值。
命名空间:
XSharp.VFP
程序集:
XSharp.VFP (在 XSharp.VFP.dll 中) 版本:2.22 GA
语法 FUNCTION TToD(
tExpression AS DateTime
) AS DATE
public static __Date TToD(
DateTime tExpression
)
查看代码参数
- tExpression
- 类型:DateTime
指定 TToD( ) 返回日期值的日期和时间表达式。
tExpression 必须评估为有效的 DateTime。如果tExpression仅包含时间,X#会将默认日期 12/30/1899 添加到 tExpression,并返回此默认日期。
返回值
类型:
__Date
日期
示例 1STORE DateTime( ) TO gtDtime
2CLEAR
3
4? "gtDtime is type: "
5?? Type('gtDtime')
6
7gtDtime = TToD(gtDtime)
8? "gtDtime is now type: "
9?? Type('gtDtime')
参见