Subtract

将时段数据减去另一个时段数据,返回相减后的时段数据值。

语法:

Subtract(Value)

Value:要减去的时段数据。

例如:

Dim t1 As New TimeSpan(40,6,30,15)
Dim
t2 As New TimeSpan(40,20,45)
Dim
t3 As TimeSpan
t3 = t1.Subtract(t2)
't3等于t1减去t2
Output.Show(t3.Days &
"天" & t3.Hours & "小时" & t3.Minutes & "分" & t3.Seconds & "秒")

上述代码的输出结果是:38天14小时9分30秒

 


本页地址:http://www.foxtable.com/webhelp/topics/0300.htm